Python 中“with”语法无效陈述
我正在为 linux (maemo) 编写一个简单的 python 应用程序。但是我在第 23 行收到 SyntaxError: invalid syntax
: with open(file,'w') as fileh:
代码可以在此处看到: http://pastebin.com/MPxfrsAp
我无法弄清楚我的代码有什么问题,我是 python 新手,并且“与“ 陈述。那么,是什么导致这段代码出错,我该如何修复它呢? “with”语句有问题吗?
谢谢!
I am working on writing a simple python application for linux (maemo). However I am getting SyntaxError: invalid syntax
on line 23: with open(file,'w') as fileh:
The code can be seen here: http://pastebin.com/MPxfrsAp
I can not figure out what is wrong with my code, I am new to python and the "with" statement. So, what is causing this code to error, and how can I fix it? Is it something wrong with the "with" statement?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您很可能使用的是不支持
with
语句的早期版本的 Python。以下是如何在不使用with
的情况下完成相同的操作:Most likely, you are using an earlier version of Python that doesn't support the
with
statement. Here's how to do the same thing without usingwith
: