从 python 打开文件

发布于 2024-11-07 16:10:55 字数 283 浏览 2 评论 0原文

在我的 python 文件中,我创建了一个 *.bmp 图像,我打开它来检查一切是否正常。

每次运行程序时打开它有点麻烦(我知道,我太懒了)并且使用 show 似乎违反直觉,因为它会冻结执行并且我无法保持它打开。

python 中打开文件的命令是什么?,你知道就像:

command='gedit file.txt'
pythonmagic.execute(command)

显然 pythonmagic 和语法是我缺少的东西。

多谢

In my python file, I create an *.bmp image, which I the open to check everything went fine.

It is a bit of a hassle to open this each time I run my program (I know, I'm too lazy) and using show seems counterintuitive, since it freezes the execution and I can't keep it open.

Which is the command in python to open files?, you know like a:

command='gedit file.txt'
pythonmagic.execute(command)

Obviously pythonmagic and the syntax are the things I'm missing.

Thanks a lot

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

腻橙味 2024-11-14 16:10:55

也许您想要 subprocess 模块。

import subprocess
proc = subprocess.Popen(['gedit', 'file.txt'])

上面的代码将使用单个参数“file.txt”打开 gedit(即在 gedit 中打开文件)。

如果您添加该行,

proc.wait()

那么脚本将等待,直到您关闭 gedit(如果您需要的话)。

Perhaps you want the subprocess module.

import subprocess
proc = subprocess.Popen(['gedit', 'file.txt'])

The above code will open gedit with the single argument 'file.txt' (i.e. open the file in gedit).

If you add the line,

proc.wait()

then the script will wait until you close gedit, should you ever want that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文