我有以下python代码。
import sys
ins = open( sys.argv[1], "r" )
array = []
for line in ins:
s = line.split()
array.append( s[0] ) # <-- Error here
print array
ins.close()
python解释器抱怨
File "sort.py", line 7
array.append( s[0] )
^
IndentationError: unindent does not match any outer indentation level
为什么这样?以及如何纠正这个错误?