尝试运行代码时出现Python EOF错误
我试图运行原子的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.")
这是错误:
华氏温度是多少? Traceback(最近一次调用最后一次):文件“C: Documents Programming Python f2c.py”,第1行,在tempf = int(raw_input(“什么是华氏温度?”))EOFError:阅读时的EOF一条线
由于它的atom-runner
不支持STDIN,所以将评论的答案综合起来,相关问题的答案如下:
谢谢! 如果有人想要提出支持请求,那么它可能会被接受(如果它看起来不错并且没有破坏任何东西,那就是)。
然而,正如你正确地指出的那样,你可以通过使用脚本包实现你正在寻找的东西。
链接地址: http://www.djcxy.com/p/56455.html上一篇: Python EOF error when trying to run code
下一篇: Custom exceptions are not raised properly when used in Multiprocessing Pool