0

我不断收到 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)

有什么帮助吗?

4

2 回答 2

0

我不知道问题是什么,但也许考虑使用 raw_input?

根据此处的文档(http://docs.python.org/2/library/functions.html#input):

考虑将 raw_input() 函数用于用户的一般输入。

于 2013-04-29T13:17:43.563 回答
-1

使用raw_input代替 input

于 2013-04-29T13:18:01.177 回答