在python中調用外部程序的方法:1.使用os.system()函數調用;2.使用ShellExecute函數調用;3.使用ctypes模塊調用;
具體方法如下:
1.使用os.system()函數調用
python中可以使用os.system()函數方便地運行其他程序或者腳本。
#打開記事本
os.system('notepad')
#用記事本打開aa.txt
os.system('notepad aa.txt')
#直接打開aa.txt
os.system('aa.txt')
#直接打開Excel文件
os.system('aa.xlsx')
#直接打開Word文件
os.system('bb.docx')
2.使用ShellExecute函數調用
import win32api
win32api.ShellExecute(0, 'open', 'notepad.exe', '', '', 0) # 后臺執行
win32api.ShellExecute(0, 'open', 'notepad.exe', '', '', 1) # 前臺打開
win32api.ShellExecute(0, 'open', 'notepad.exe', 'wmi.txt', '', 1) # 打開文件
win32api.ShellExecute(0, 'open', 'iexplore.exe', '', '', 1) # 打開IE瀏覽器
3.使用ctypes模塊調用
python中可以使用ctypes模塊來調用位于動態鏈接庫的函數。
//調用user32.dll中的MessageBoxA函數
from ctypes import *
user32 = windll.LoadLibrary('user32.dll')
a = user32.MessageBoxA(0, str.encode('Hello Ctypes!'), str.encode('Ctypes'), 0)
print a