从 python 打开文件
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您想要 subprocess 模块。
上面的代码将使用单个参数“file.txt”打开 gedit(即在 gedit 中打开文件)。
如果您添加该行,
那么脚本将等待,直到您关闭 gedit(如果您需要的话)。
Perhaps you want the subprocess module.
The above code will open gedit with the single argument 'file.txt' (i.e. open the file in gedit).
If you add the line,
then the script will wait until you close gedit, should you ever want that.