python运行其他程序的实现方法

python运行其他程序的实现方法,第1张

概述python运行其他程序的实现方法            这里提供了两种实现方法,一.os.system()函数和使用ShellExecute函数运行其他程序及实现代码,大家可以参考

python运行其他程序的实现方法

             这里提供了两种实现方法,一.os.system()函数和 使用ShellExecute函数运行其他程序及实现代码,大家可以参考下,

一 使用os.system()函数运行其他程序

打开系统的记事本程序

>>>import os>>> os.system('notepad')0>>> os.system('notepad python.txt')0

 二 使用ShellExecute函数运行其他程序

>>>import win32API>>> win32API.ShellExecute(0,'open','notepad.exe','',0)42>>> win32API.ShellExecute(0,1)42>>> win32API.ShellExecute(0,'python.txt','http://www.python.org','E:\python\work\Demo.mp3','E:\python\work\MessageBox.py',1)42

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

总结

以上是内存溢出为你收集整理的python运行其他程序的实现方法全部内容,希望文章能够帮你解决python运行其他程序的实现方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1201960.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存