教程
http://docs.python.org/2/tutorial/inputoutput.html
>>> with open('workfile', 'r') as f:
... read_data = f.read()
>>> f.closed
True
我的代码,
在 python 2.7.5 中
with open(filea, 'r') as f:
^ SyntaxError: invalid syntax
为什么这是语法错误?