EOFError:读取任何输入的一行时出现EOF

时间:2019-12-04 09:20:23

标签: python python-3.x syntax-error eof eoferror

最近,我编写了多个样本,并且对于任何输入我都收到此错误。 这是我的样本之一:

import math
v = float(input("speed of wind in km/sec: "))
d = float(input("temperature of air in celsius: "))
wc = 35.74 + 0.61215*d - (35.75*math.pow(v, 0.16)) +(.4275*d*math.pow(v, 0.16))
print("Wind Chill index is :", wc)


speed of wind in km/sec: Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
EOFError: EOF when reading a line 

有什么办法可以彻底解决这个问题?

0 个答案:

没有答案