Python 3程序返回错误“ EOFError:读取行时出现EOF”

时间:2019-02-27 11:07:11

标签: python python-3.x

我遇到问题:“ EOFError:读取行时出现EOF”,我不知道为什么:

string=input("Please enter a string: ")
word=string[0]
print(word+string.replace(word,'e')[1:])

1 个答案:

答案 0 :(得分:0)

当您输入为空时,将出现EOF错误。 例如,如果您打开Python shell

x = input("Enter something:")

然后按Enter,将显示EOF错误。 总而言之,我认为这是您正在使用的IDE中的一个问题。也许提供有关您的环境的更多详细信息。