运行我的程序时出现语法错误(Python 3)

时间:2013-12-22 08:25:34

标签: python-3.x syntax

这是我的剧本:

def info():
  print '\n'.join(commands)

异常突出显示'\ n'部分,但我看不出有什么问题。

1 个答案:

答案 0 :(得分:3)

如果您使用Python 3.x,print应该是函数形式。

def info():
    print('\n'.join(commands))

BTW,commands未作为参数传递。然后它指的是全局变量commands