cel = float(5 / 9*(fahr - 32))
Traceback (most recent call last):
File "<pyshell#31>", line 1, in <module>
cel = float(5 / 9*(fahr - 32))
NameError: name 'fahr' is not defined
cel = float(5 / 9*(fahr - 32))
Traceback (most recent call last):
File "<pyshell#31>", line 1, in <module>
cel = float(5 / 9*(fahr - 32))
NameError: name 'fahr' is not defined
4 回答970 阅读
6 回答4k 阅读✓ 已解决
1 回答712 阅读
1 回答698 阅读
1 回答520 阅读
645 阅读
585 阅读
你得先写个:
但是我估计你是想写个函数,所以你需要: