次の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
なんでそうなの?そして、このエラーを修正する方法は?