SyntaxError在终端中使用引号引起来

时间:2019-04-09 21:38:22

标签: python syntax python-2.x

每次我用"写一些代码并在终端中运行它-它向我显示错误-我该如何解决?

SyntaxError: invalid syntax
Radani:Books radani$ python 2.py
  File "2.py", line 16
    Print "what is 5 - 7?", 5-7 
                         ^
SyntaxError: invalid syntax

1 个答案:

答案 0 :(得分:2)

Python中的print命令全部为小写。

>>> print "what is 5 - 7?"
what is 5 - 7?