这是一个带GUI的温度转换器。我遇到了GUI方面的问题。在我添加到GUI之前,我的代码运行正常,现在说它全部检出,但实际运行程序时什么都不会发生。我不知道是不是因为我需要Tkinter文件可能在同一个文件夹中?我之前从文件中获取文本或者我的GUI完全编程错误时遇到了这个问题!谢谢!
#import
#main function
from Tkinter import *
def main():
root=Tk()
root.title("Temperature Converter")
root.geometry("400x700")
#someothersting=""
someotherstring=""
#enter Celcius
L1=Label(root,text="Enter a Celcius temperature.")
E1=Entry(root,textvariable=someotherstring)
somebutton=Button(root, text="Total", command=lambda: convert(E1.get()))
somebutton.pack()
E1.pack()
L1.pack()
root.mainloop()#main loop
#convert Celcius to Fahrenheit
def convert(somestring):
if somestring != "":
# cel=0 dont need these in python
# far=0
cel=int(somestring)
far=(9/5*(cel))+32
print(F)
答案 0 :(得分:0)
添加main()并将F更改为far。我还在一个示例中添加了使标签说明转换的内容!:)希望这会有所帮助。
#import
#main function
from Tkinter import *
def main():
root=Tk()
root.title("Temperature Converter")
root.geometry("400x700")
#someothersting=""
someotherstring=""
#enter Celcius
L1=Label(root,text="Enter a Celcius temperature.")
E1=Entry(root,textvariable=someotherstring)
somebutton=Button(root, text="Total", command=lambda: convert(E1.get()))
somebutton.pack()
E1.pack()
L1.pack()
root.mainloop()#main loop
#convert Celcius to Fahrenheit
def convert(somestring, label):
if somestring != "":
cel=int(somestring)
far=(9/5*(cel))+32
answer = str(cel) + " Converted to Farenheit = " + str(far)
label.config(text=answer)
main()