码迷,mamicode.com
首页 > 编程语言 > 详细

python练习-easygui-温度转换2

时间:2017-01-10 00:10:21      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:python

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
#‘\n‘是换行
easygui.msgbox(‘this is‘+ str(c)+ ‘\n‘+‘degrees celsius.‘)

python练习-easygui-温度转换2

标签:python

原文地址:http://huzhongliang.blog.51cto.com/1817180/1890445

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!