我有以下代码:
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
>>>
我做错了什么?
答案 0 :(得分:2)
这不是多行问题,而是print
的问题。
print
被替换为函数print()
,因此您必须将其称为函数。
print 'hello'
print('hello')
对于您的情况,请尝试
print('''
Hello,
World
''')