终端说无效语法(Python新手)

时间:2014-09-01 03:12:23

标签: python syntax

我环顾四周,似乎无法在本网站上找到答案。

我上课学习Python,我们有第一个项目,这让我输入了这段代码:

>>> year_str = input("Predict the population growth of the United States in a number of years in the future: ")
>>>
>>>year_int = int(year_str)
>>> 
>>> year_len = 31536000
>>> 
>>> birth = (((year_len * year_int)//7) + (((year_len * year_int)%7)//7))
>>>
>>> death = (((year_len * year_int)//13) + (((year_len * year_int)%13)//13))
>>>
>>> immigr = (((year_len * year_int)//40) + (((year_len * year_int)%40)//40))
>>> 
>>> growth = birth - death + immigr
>>> 
>>> pop1 = 318354218
>>> 
>>> pop2 = pop1 + growth
>>> 
>>> print("The new population in",year_int,"year(s) will be", pop2)
>>> 

我已经取出了结果,例如输入提示和打印输出。

但是,当我尝试打开.py文件时,我会暂时收到此消息:

File "C:\Users\X\Documents\Python\proj01.py", line 1
 Python 3.4.1 <v3.4.1:c0e311e010fc, May 1 2014, XX:XX:XX> [Msc v.1600 32 bit <Intel>] on win32
SyntaxError: invalid syntax

1 个答案:

答案 0 :(得分:2)

从每一行删除>>>