标签: python-3.x syntax
这是我的剧本:
def info(): print '\n'.join(commands)
异常突出显示'\ n'部分,但我看不出有什么问题。
答案 0 :(得分:3)
如果您使用Python 3.x,print应该是函数形式。
print
def info(): print('\n'.join(commands))
BTW,commands未作为参数传递。然后它指的是全局变量commands。
commands