源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2021-03-22 07:10 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:python运行其他程序的实现方法
[b]python运行其他程序的实现方法[/b] [b]            [/b] 这里提供了两种实现方法,一.os.system()函数和 使用ShellExecute函数运行其他程序及实现代码,大家可以参考下, [b]一 使用os.system()函数运行其他程序[/b] 打开系统的记事本程序
>>>import os
>>> os.system('notepad')
0
>>> os.system('notepad python.txt')
0
 [b]二 使用ShellExecute函数运行其他程序[/b]
>>>import win32api
>>> win32api.ShellExecute(0,'open','notepad.exe','','',0)
42
>>> win32api.ShellExecute(0,'open','notepad.exe','','',1)
42
>>> win32api.ShellExecute(0,'open','notepad.exe','python.txt','',1)
42
>>> win32api.ShellExecute(0,'open','http://www.python.org','python.txt','',1)
42
>>> win32api.ShellExecute(0,'open','E:\\python\\work\\Demo.mp3','','',1)
42
>>> win32api.ShellExecute(0,'open','E:\\python\\work\\MessageBox.py','','',1)
42

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部