SyntaxError:语法file.close()无效

时间:2018-04-10 00:35:14

标签: python

I keep getting an error here, any help?

file = open(FILENAME,'r')与file.close位于同一行,没有缩进。为什么我一直收到这个错误?

1 个答案:

答案 0 :(得分:2)

您忘记在此行上关闭括号:

ballpark = line.strip*(

应该是:

ballpark = line.strip()