91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

如何在python中調用外部程序

養魚的貓咪
579
2021-04-21 14:01:52
欄目: 編程語言

在python中調用外部程序的方法:1.使用os.system()函數調用;2.使用ShellExecute函數調用;3.使用ctypes模塊調用;

如何在python中調用外部程序

具體方法如下:

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

0
吉水县| 独山县| 乌兰县| 盐边县| 宣武区| 凌海市| 疏附县| 乐平市| 锦屏县| 瓦房店市| 乐至县| 侯马市| 唐河县| 措美县| 临潭县| 宁城县| 齐齐哈尔市| 密山市| 冀州市| 峨边| 贵德县| 荔浦县| 上蔡县| 天长市| 霍林郭勒市| 西乌珠穆沁旗| 新闻| 子长县| 日照市| 赤城县| 青川县| 密山市| 岳阳市| 永宁县| 海伦市| 河南省| 娱乐| 南涧| 栾城县| 筠连县| 宾川县|