# -*- coding: UTF-8 -*- S=float(input("输入摄氏度:")) H=(S*9/5)+32 print("%0.1f 摄氏度转华氏度为 %0.1f" %(S,H)) ...
分类:
其他好文 时间:
2018-09-03 13:44:30
阅读次数:
135
摄氏度转化成华氏x = input("输入摄氏温度:") y = int(x)*9/5 +32 input("当摄氏温度为:{0}时,华氏温度:+{1}".format(x,y)) ...
分类:
其他好文 时间:
2018-09-03 12:14:31
阅读次数:
172
1.输入框组件 输入框(Entry)用来输入单行内容,可以方便地向程序传递用户参数。这里通过一个转换摄氏度和华氏度的小程序来演示该组件的使用。 import tkinter as tk def btnHelloClicked(): cd = float(entryCd.get()) labelHel ...
分类:
其他好文 时间:
2018-07-31 13:34:46
阅读次数:
161
第三章(第一个程序)知识点归纳 编程犹如写剧本。Python函数与剧本差别不大,你可以反复调用函数,而它每次都执行预定的“脚本”(脚本也可以指整个程序)。 在Python IDLE中,真正的编程是从编写函数开始的。 加拿大,摄氏度。 Fahr = Cels * 1.8 + 32 或 Cels = ( ...
分类:
编程语言 时间:
2018-07-21 22:43:12
阅读次数:
256
while True: a=int(input('摄氏转华氏请按1\n华氏转摄氏请按2\n退出请按3\n')) if a==1: c=float(input('请输入摄氏度温度:')) f=c*9/5+32 print('摄氏{:.2f}的华氏为{;.2f}') elif a==2: f = flo ...
分类:
其他好文 时间:
2018-04-26 01:29:47
阅读次数:
172
a=int(input ('摄氏度转换为华氏度请按 1\n华氏度转换为摄氏度请按 2\n')) if a==1: c = float(input('请输入摄氏温度:')) f = c*9/5+32 print('{:.2f}°C转换成华氏温度为{:.2f}°F'.format(c,f)) else: ...
分类:
其他好文 时间:
2018-04-26 01:27:46
阅读次数:
135
while True: a = int(input('摄氏转华氏请按 1\n华氏转摄氏请按 2\n退出请按3\n')) if a==1: c = float(input('请输入摄氏度:')) f = c*9/5+32 print('摄氏{:.2f}的华氏为{:.2f}\n'.format(c,f)... ...
分类:
其他好文 时间:
2018-04-26 01:24:10
阅读次数:
148
while True: a = int(input('摄氏度转换为华氏度请按1\n华氏度转换为摄氏度请按2\n退出请按3\n')) if a==1: c = float(input('请输入摄氏度:')) f = c*9/5+32 print('摄氏{:.2f}的华氏度为{:.2f}'.format... ...
分类:
其他好文 时间:
2018-04-26 01:24:02
阅读次数:
187
while True: a = int(input('摄氏转华氏按1\n 华氏转摄氏按2\n退出请按3\n')) if a ==1: c = float(input('请输入摄氏度')) f = c*9/5+32 print('{:.2f}摄氏温度转化为华氏温度{:.2f}\n'.format(c,... ...
分类:
其他好文 时间:
2018-04-26 01:18:54
阅读次数:
142
while True: a = input('摄氏转华氏按1 华氏转摄氏按2') if a == '1': #输入 c = input('请输入摄氏温度:') #计算 f = float(c)*9/5+32 #输出 print('{}摄氏度转华氏度为{}' .format(c,f)) e... ...
分类:
其他好文 时间:
2018-04-26 01:18:37
阅读次数:
159