可能重复:
使用 Python 3 打印时出现语法错误
我有以下代码:
print '''
Hello World
''''
它适用于 Python 2,但不适用于 Python 3:
Python 3.2.3 (default, Dec 10 2012, 06:30:54)
[GCC 4.5.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print '''
... hello world
... '''
File "<stdin>", line 3
'''
^
SyntaxError: invalid syntax
>>>
我究竟做错了什么?