脚本中的python语法错误,在REPL中很好

时间:2011-12-28 16:53:09

标签: python syntax-error

当我将这个python代码放入REPL for python(交互式shell)时,它按预期工作:

>>> def get_header():
...     return (None,None,None)
... 
>>> get_header()
(None, None, None)

请注意,return语句缩进了四个空格,我已经检查过以确保没有多余的空格。

当我将完全相同的代码放入python脚本文件并执行它时,我收到以下错误:

./test.py: line 1: syntax error near unexpected token `('
./test.py: line 1: `def get_header():'

WHY吗

编辑:这是test.py,空格和所有内容的完全内容:

def get_header():
    return (None,None,None)

get_header()

我已经验证上面的脚本(test.py)确实产生了上面的错误。

1 个答案:

答案 0 :(得分:11)

这不起作用的原因是你没有告诉bash这是一个Python脚本,因此它尝试将其作为shell脚本执行,然后在语法为'n'时抛出错误对。

您需要的是使用shebang行启动文件,告诉它应该运行什么。所以你的文件变成了:

#!/usr/bin/env python

def get_header():
    return (None, None, None)

print get_header()