小编典典

使用 Python 3 打印时出现语法错误

all

为什么在 Python 3 中打印字符串时会收到语法错误?

>>> print "hello World"
  File "<stdin>", line 1
    print "hello World"
                      ^
SyntaxError: invalid syntax

阅读 61

收藏
2022-05-09

共1个答案

小编典典

在 Python 3 中,print
变成了一个函数。这意味着您现在需要包含括号,如下所述:

print("Hello World")
2022-05-09