“ int”对象不可调用错误,即使我(猜测)正在使用浮点数

时间:2018-09-28 19:02:20

标签: python int

我的代码:

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对象不可调用

输入行之后,这有什么问题?

1 个答案:

答案 0 :(得分:2)

表达式C= 5/9(F-32)是非法的,请在两个乘法参数*之间使用C = (5/9)*(F-32)