gpt4 book ai didi

python - 在 Atom 上运行 Python 代码时获取 "EOFError"

转载 作者:行者123 更新时间:2023-11-28 18:31:25 28 4
gpt4 key购买 nike

我正在尝试使用 atom-runner 运行 python 代码对于原子,但它返回 EOF 错误。我做了类似问题的其他答案所说的那样,并用 raw_input() 代替了 input(),但它仍然返回 EOF 错误。

这是我的代码:

tempf = int(raw_input("What is the temperature in fahrenheit?  "))
tempc = (tempf - 32) * 5 / 9
print("The temperature in celsius is", tempc, "degrees.")

这里是错误:

What is the temperature in fahrenheit?  
Traceback (most recent call last):
File "C:\Documents\Programming\Python\f2c.py", line 1, in <module>
tempf = int(raw_input("What is the temperature in fahrenheit? "))
EOFError: EOF when reading a line

最佳答案

将评论中的答案汇总在一起,就这样 atom-runner does not support STDIN ,链接的问题得到了回应:

Thanks! If someone wanted to put together a pull request to support this it would probably be accepted (if it looked good and didn't break anything, that is).

但是,正如非常正确地指出的那样,您可能可以通过使用 script package 来实现您正在寻找的东西。 .

关于python - 在 Atom 上运行 Python 代码时获取 "EOFError",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36874165/

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