2020年3月9日 星期一

Python: 執行外部程式

依現有需求, 用最簡單的方式就可以了:
>>> imoprt os
>>> os.system('notepad')
>>> os.system('notepad python.txt')


目前看到有四種方式:
1.使用os.system函式執行其他程式
2.使用ShellExecute函式執行其他程式
3.使用CreateProcess函式執行其他程式
4.使用ctypes呼叫kernel32.dll中的函式


Ref:
1.Python呼叫(執行)外部程式
https://www.itread01.com/content/1543855085.html

沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。