需要帮助制作一个简单的Celsius转换器

时间:2014-11-02 15:43:35

标签: python converter

我希望能够将摄氏温度转换为华氏温度。经过一番研究后,我找到了一种方法。这是我的代码:

celsius = float(input('Enter degree Celsius: '))

fahrenheit = (celsius * 1.8) + 32
print('%0.1f degree Celsius is equal to %0.1f degree Fahrenheit' %(celsius,fahrenheit))

raw_input ("Press Enter To Close")

所以我的问题是我可以将它变成简单的小程序。所以当我启动它时,它会作为exe文件打开,然后输入一个示例100并点击OK,然后在按钮下面或者我得到答案。

像图片一样的东西。对于我使用photoshop的图片。 http://i.imgur.com/XvTEj0c.png

1 个答案:

答案 0 :(得分:0)

由于无法在评论中粘贴长代码,因此这是一个非常艰难的开始:

#!/usr/bin/env python3
import tkinter
import tkinter.simpledialog

root = tkinter.Tk()
root.withdraw()


celsius = tkinter.simpledialog.askfloat(
  'Celsius converter',
  'Enter degree Celsius: '
)
fahrenheit = (celsius * 1.8) + 32
tkinter.messagebox.showinfo(
  'Celsius converter',
  '%0.1f degree Celsius is equal to %0.1f degree Fahrenheit' % (celsius, fahrenheit)
)