我的代码:
import math
def celsius(F):
C= 5/9(F-32)
return C
Fahr=float(input("Qual a temperatura em Fahrenheit? "))
Cels= celsius(Fahr)
print("A respetiva temperatura em Celsius é ",Cels)
它给我以下错误:
int对象不可调用
输入行之后,这有什么问题?
答案 0 :(得分:2)
表达式C= 5/9(F-32)
是非法的,请在两个乘法参数*
之间使用C = (5/9)*(F-32)
。