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

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python執行shell命令無法獲取返回值如何解決

發布時間:2020-12-07 15:21:20 來源:億速云 閱讀:405 作者:Leah 欄目:開發技術

本篇文章為大家展示了python執行shell命令無法獲取返回值如何解決,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

python獲取執行shell命令后返回值得幾種方式:

# 1.os模塊
ret = os.popen("supervisorctl status")
ret_data = ret.read()
# 2.subprocess模塊
ret = subprocess.Popen('supervisorctl status',shell=True,stdout=subprocess.PIPE)
out,err = ret.communicate()
# 3.commands模塊
ret_data = commands.getoutput("supervisorctl status")
# commands.getstatusoutput()還可獲取到命令執行是否成功狀態

一開始程序使用的是 os.popen() 方法,在交互式python shell或者IDE環境下使用上述方法都可以獲取到執行的返回值,但當使用腳本執行時發現返回值為空,然后修改為使用 command.getoutput() 方法,這時獲取到返回值為 “sh: supervisorctl: command not found”。

由此可知是執行命令時無法識別 supervisorctl 命令,但系統中是已經安裝好supervisor的,于是使用 which supervisorctl 查看supervisorctl路徑,以帶路徑的方式執行指令 “/usr/local/bin/supervisorctl status”,最后成功獲取到返回值。

總結:

python使用shell命令操作非系統自帶工具時,最好帶上工具路徑。

補充知識:python 如何判斷調用系統命令是否執行成功

首先我們要知道如何調用系統命令:

>>> os.system('ls')
anaconda-ks.cfg install.log.syslog 模板 圖片 下載 桌面
install.log     公共的           視頻 文檔 音樂
0
>>>
>>> os.system('lss')
sh: lss: command not found
32512
>>>

\\第一種,我們可以肉眼識別正確的會返回0,錯誤的則是非0

\\第二種,使用if判斷調用系統命令返回值是否為0,如為0則不輸出,不為0則輸出 "Without the command"

-------------------錯誤-------------------

>>> if os.system('lss') !=0:print 'Without the command'
...
 
sh: lss: command not found
Without the command

-------------------正確-------------------

>>> if os.system('ls') !=0:print 'Without the command'
...
 
anaconda-ks.cfg install.log.syslog 模板 圖片 下載 桌面
install.log     公共的           視頻 文檔 音樂
>>>

上述內容就是python執行shell命令無法獲取返回值如何解決,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

尼勒克县| 从化市| 白朗县| 宜宾县| 浙江省| 上蔡县| 板桥市| 临洮县| 西乌珠穆沁旗| 张掖市| 彝良县| 西乡县| 武胜县| 江北区| 邹平县| 汉源县| 修武县| 石家庄市| 灵寿县| 海南省| 北宁市| 聂荣县| 桐城市| 通城县| 洪湖市| 丹江口市| 墨脱县| 盈江县| 晋州市| 山西省| 昌平区| 惠安县| 阜城县| 永昌县| 塔城市| 黔西县| 修武县| 定州市| 丘北县| 灵丘县| 綦江县|