我不断收到 EOF 错误。我看不出有什么理由对我大喊大叫。我已经尝试在 3.3 和 2.7 中运行它,所以我想肯定有问题。虽然我在Cloud 9中时没有收到任何错误,但它实际上不会运行。当我使用不同的 IDE 时,我得到了那个错误。
Executing the code....
$python3 demo.py
Hello! What is your name?Traceback (most recent call last):
File "demo.py", line 2, in
name = input("Hello! What is your name?")
EOFError: EOF when reading a line
这是我的代码。
import sys
name = input("Hello! What is your name?")
print("So your name is {0}? Cool!".format(name))
age = input("Now tell me how old you are.")
print("So your name is {0} and you're {1} years old?".format(name, age))
yn = input("Y/N?")
if yn == "y":
print("Okay good!")
elif yn == "n":
sys.exit(0)
有什么帮助吗?