一 使用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,'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
本文介绍如何使用Python的os.system()函数及ShellExecute函数来启动并打开外部应用程序,包括记事本、网页链接及多媒体文件等。

被折叠的 条评论
为什么被折叠?



