我是 Python 新手。
我在网上看一个教程,作者用了str = input()
,然后他输入了一个句子。之后,他得到存储在 str 中的输入字符串。但是,当我在我的 python shell 中尝试str = input()
时,它不起作用。这是错误:
>>> a = input()
test sentence
Traceback (most recent call last):
File "<pyshell#5>", line 1, in <module>
a = input()
File "<string>", line 1
test sentence
^
SyntaxError: unexpected EOF while parsing
你能告诉我为什么会这样吗?