gpt4 book ai didi

python - 摄氏度到华氏度的方法不起作用

转载 作者:行者123 更新时间:2023-11-30 21:50:39 24 4
gpt4 key购买 nike

我是计算机开发领域的新手,我从 Python 开始。

我尝试使用 Tkinter 创建一个摄氏度 - 华氏度(反之亦然)转换器。我创建了一个名为“celsius_to_fahrenheit”的方法,并这样定义它:

def celsius_to_fahrenheit():
n = celsius_entry.get()
result = n * 9 / 5 + 32
fahrenheit_entry.delete(0, END)
fahrenheit_entry.insert(0, result)

该方法是通过按钮启动的,当我按下它时,出现此错误:

Exception in Tkinter callback
Traceback (most recent call last):
File "C:\Users\[Me]\AppData\Local\Programs\Python\Python38\lib\tkinter\__init__.py", line 1883, in __call__
return self.func(*args)
File "D:/Mes Documents/[Me]/Programmation/Python/Projets/ui/degree_farenheit.py", line 7, in celsius_to_fahrenheit
result = n * 9 / 5 + 32
TypeError: unsupported operand type(s) for /: 'str' and 'int'

希望你能帮助我!

最佳答案

n的类型是str。在计算之前需要将其转换为FLOAT。

n = float(celsius_entry.get())

关于python - 摄氏度到华氏度的方法不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60306773/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com