def wd(): w=input('请输入一个摄氏温度或者一个华氏温度,如,34c/C or 34f/F:') if w[-1] in ['c','C']: w=float(w[:-1]) hs=1.8*w+32 print('华氏温度:{:.2f}F'.format(hs)) elif w[-1] in ['f',' F']: w=float(w[:-1]) ss=(w-32)/1.8 print ('摄氏温度:{:.2f}C'.format(ss)) wd()…
#coding:utf-8 import os import tkinter as tk from tkinter import filedialog root = tk.Tk() root.withdraw() file_path = filedialog.askdirectory() file_path =file_path+'/' f=os.listdir(file_path) n=0 name=input('请输入你要批量命名的名字:')#我批量命名的是 美女 -__- for i in…
'''a,b=0,1 x=int(input('请指定需要多少项:')) while x>0: print(b) a,b=b,a+b x-=1''' #递归 def fibo(n): if n<=1: return 1 else: return fibo(n-1) + fibo(n-2) i=int(input('请指定需要多少项:')) for j in range(0,i): print(fibo(j))…
import calendar year = int(input('请输入要查询的年份:')) month = int (input('请输入要查询的月数:')) print (calendar.month(year,month))…
import time,sys,os while(1): t = time.strftime('%Y-%m-%d\n%H:%M:%S',time.localtime(time.time())) print(t) sys.stdout.flush() time.sleep(1) os.system('cls')#windows命令提示符下清屏,在linux终端下清屏就用:os.system("clear")…
for i in range(1,10): for j in range(1,i+1): print('{}*{}={}\t'.format(i,j,i*j),end='') print()…
import math def y(): a,b,c=map(float,input('请输入一元二次方程式ax^2+bx+c=0,abc的值,用空格隔开:').split()) d=math.pow(b,2)+4*a*c if a!=0 and d>=0: x1=(math.sqrt(d)-b)/(2*a) x2=-(math.sqrt(d)+b)/(2*a) print('方程的值是:{:.2f},{:.2f}'.format(x1,x2)) elif a==0: print('a不能为0,…
def j(): a,b,c=map(float,input('请输入三角形三条边的长度,用空格隔开:').split()) if a>0 and b>0 and c>0 and a+b>c and a+c>b and b+c>a: l=a+b+c p=l/2 s=p*(p-a)*(p-b)*(p-c)#海伦公式 print('三角形的周长:{:.2f}\n三角形的面积:{:.2f}'.format(l,s)) else: print('三角形不成立,请重新输入') j…
1.题目:输出 9*9 乘法口诀表.     程序分析:分行与列考虑,共9行9列,i控制行,j控制列     代码: for i in range(1,10): print ('\r') for j in range(1,i+1): print "%d*%d=%d" %(i,j,i*j) , 2.题目:有两个磁盘文件A和B,各存放一行字母,把这两个文件中的信息合并(按字母顺序排列), 输出到一个新文件C中 代码: fo=open("/Users/chichi/Document…
--声明游标:CURSOR cursor_name IS select_statement --For循环游标 --(1)定义游标 --(2)定义游标变量 --(3)使用for循环来使用这个游标 declare --类型定义 cursor c_job is select empno,ename,job,sal from emp where job='MANAGER'; --定义一个游标变量v_cinfo c_emp%ROWTYPE,该类型为游标c_emp中的一行数据类型 c_row c_job%…