Python 中“with”语法无效陈述

发布于 2024-08-31 10:02:41 字数 349 浏览 4 评论 0原文

我正在为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦萦几度 2024-09-07 10:02:41

您很可能使用的是不支持 with 语句的早期版本的 Python。以下是如何在不使用 with 的情况下完成相同的操作:

fileh = open(file, 'w')
try:
    # Do things with fileh here
finally:
    fileh.close()

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 using with:

fileh = open(file, 'w')
try:
    # Do things with fileh here
finally:
    fileh.close()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文