读取线时出现EOF错误

时间:2016-07-10 01:56:01

标签: python

我是Python的新手,正在尝试在我的文本编辑器(TextWrangler)上编写基本程序。无论我做什么,我都会收到EOF错误。这是我的代码:

print('Hello world!')
print('What is your name?')
myName = input()
print('It is good to meet you, ' + myName)
print('The length of your name is:')
print(len(myName))
print('What is your age?') # ask for their age
myAge = input()
print('You will be ' + str(int(myAge) + 1) + ' in a year.')

我得到的错误是第3行:“EOF错误:读取行时出错”。我已经尝试了raw_input和input(),没有任何效果。我做错了什么?

真的很感激任何帮助。

1 个答案:

答案 0 :(得分:-1)

您只需为int(input())输入myAge,为str(input())输入myName。还要从代码的最后一行中删除+1