在os模組中提供了兩種呼叫 cmd 的方法,os.popen() 和 os.system()
os.system(cmd) 是在執行command命令時需要開啟乙個終端,並且無法儲存command命令的執行結果。
os.popen(cmd,mode) 開啟乙個與command程序之間的管道。返回值是乙個檔案物件,可以讀或程式設計客棧者寫(由mode決定,預設是'r')。如果mode為'r',可以使用此函式的返回值呼叫read()來獲取command命令的執行結果。
os.system()
定義:def system(*args, **kwargs): # real signature unknown
""" execute the command in a subshell. """
pass
簡單的來說就是在shell中執行command命令
示例:(venv) c:\users\tynamyang>python
python 3.7.0 (v3.7.0:1bf9cc5093, jun 27 2018, 04:06:47) [msc v.1914 32 bit (intel)] on win32
type "help", "copyright", "credits" or "license" for more information.
>>>
>&g程式設計客棧t;> import os
>>> cmd = 'echo "i am tynam"'
>>> os.system(cmd)
"i am tynam"
>>>
os.popen()
定義:# supply os.popen()
def popen(cmd, mode="r", buffering=-1):
if not isinstance(cmd, str):
raise typeerror("invalid cmd type (%s, expected string)" % type(cmd))
if mode not in ("r", "w"):
raise valueerror("invalid mode %r" % mode)
if buffering == 0 or buffering is none:
raise valueerror("popen() does not support unbuffered streams")
import subprocess, io
if mode == "r":
proc = subprocess.popen(cmd,
shell=true,
stdout=subprocess.pipe,
bufsize=buffering)
return _wrap_close(io.textiowrapper(proc.stdout), proc)
else:
proc = subprocess.popen(cmd,
shell=true,
mbiqa stdin=subprocess.pipe,
bufsize=buffering)
return _wrap_close(io.textiowrapper(proc.stdin), proc)mbiqa
也是在shell中執行command命令,但是返回的結果卻是乙個檔案物件,可以對其讀寫
其中的三個引數程式設計客棧含義:
command -- 執行的shell命令
mode -- 模式許可權,讀(『r')或者寫(『w'),預設為讀(『r')
bufsize -- 如果將緩衝值設定為0則不會進行緩衝。 如果緩衝值為1則在訪問檔案時將執行行緩衝。 如果將緩衝值設定為大於1的整數則以設定的緩衝大小執行緩衝操作。 如果為負則緩衝區大小為系統預設值(預設行為)。
示例:>>> import os
>>> cmd = 'echo "i am tynam"'
>>> f = os.popen(cmd, 'r')
>>> f.read()
'"i am tynam"\n'
>>>
本文標題: python如何使用os模組呼叫cmd
本文位址:
python的os模組使用
檢視os的名字 import os print os.name nt,nt 表示windows系統,posix 表示linux系統 檢視os環境變數 import os print os.environ print os.environ.get pat default 檢視變數 pat 若不存在,則...
python模組 OS模組
bin env python coding utf 8 import os print os.name 輸出主機平台 print os.getcwd 輸出當前目錄 print os.listdir os.getcwd 輸出當前目錄的檔案 橫向 for i in os.listdir os.getcw...
python 模組 OS模組
print os.getcwd 輸出 e python workspace 原來 print os.getcwd 輸出 e python workspace 返回上級目錄 os.chdir os.getcwd 輸出 e python 更改 os.chdir r e print os.getcwd 輸...