python练习-easygui-温度转换
程序员文章站
2022-03-02 12:13:18
...
import easygui
easygui.msgbox('this program converts fahrenheit to celsius')
t=easygui.enterbox('type the T temperature in fahrenheit:')
f=float(t)
c=(f-32)*5.0/9
easygui.msgbox('this is'+ str(c)+ 'degrees celsius.')
转载于:https://blog.51cto.com/huzhongliang/1890436
下一篇: Python6种创建字典的方式