我编写并运行了该行
a,b,c =input("enter three values").split()
当我在终端中输入值 1 2 3 时,我得到:
File "ddd.py", line 76, in <module>
a,b,c =input().split()
File "<string>", line 1
1 2 3
^
SyntaxError: invalid syntax
这里发生了什么?
我觉得输入应该是一个字符串,而不是用空格分隔的整数。 例如“1 2 3”