摘要:
bigFile = open('big.txt',mode='r',encoding='utf-8') bigText = bigFile.read() bigFile.close() print(bigText) replaceList=[',','.',"'",'\n'] for c in replaceList: bigText = bigText.replace(c,'') ... 阅读全文
2018年6月20日
2018年5月30日
2018年5月9日
摘要:
import turtle turtle.setup(800,400,0,0) turtle.bgcolor('white') turtle.color("yellow") turtle.fillcolor("red") turtle.begin_fill() for i in range(5): turtle.forward(50) turtle.right(144) ... 阅读全文
2018年5月2日
摘要:
价格 = 3 while True: guess = int(input()) if guess > 价格: print('高了') elif guess < 价格: print('低了') else: print('bingo') break 阅读全文
2018年4月25日
摘要:
a = int(input('摄氏度转换为华氏温度请按 1\n华氏温度转化为摄氏度请按 2\n')) if a=='1': c = float(input('请输入摄氏温度: ')) f = c*9/5+32 print('摄氏{:,2f}的华氏为{:.2f}'.format(c,f )) else: f = float(input('请输入华氏温度:')) ... 阅读全文
摘要:
a=input('请输入一个摄氏温度') sum2=int(a)*9/5+32 print('转换的华氏温度是:{}'.format(sum2)) 阅读全文
2018年4月18日
摘要:
num1 = input('输入第一个数字:') num2 = input('输入第二个数字:') sum = float(num1)+float(num2) print('{}和{}相加结果为{}'.format(num1,num2,sum)) 阅读全文
摘要:
name1 = input('请输入一个名字:') name2 = input('请输入一个名字: ') animal = input('请输入一个名字 :') print('刚按完摩的{}出门看见{},骑着{}走了。'.format(name1,name2,animal)) 阅读全文