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

溫馨提示×

python怎么執行系統命令

小億
81
2024-11-22 14:16:08
欄目: 編程語言

在Python中,你可以使用os模塊或subprocess模塊來執行系統命令

方法1:使用os模塊

import os

os.system('ls')  # 列出當前目錄下的文件和文件夾

注意:os.system()函數執行的是shell命令,因此需要注意安全性問題。

方法2:使用subprocess模塊

subprocess模塊提供了更強大的功能來執行外部命令。以下是一些常用的函數:

import subprocess

# 使用subprocess.run()執行命令并等待完成
result = subprocess.run(['ls'], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
print(result.stdout)  # 輸出命令的輸出
print(result.stderr)  # 輸出命令的錯誤信息

# 使用subprocess.Popen()執行命令并實時獲取輸出
process = subprocess.Popen(['ls'], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
for line in iter(process.stdout.readline, ''):
    print(line.strip())  # 實時輸出命令的每一行
process.stdout.close()
result = process.wait()

同樣,注意安全性問題,避免執行不受信任的命令。

0
平果县| 鸡泽县| 固镇县| 韩城市| 桦川县| 衢州市| 平顺县| 景宁| 安龙县| 宕昌县| 珠海市| 舒兰市| 阿瓦提县| 清涧县| 嫩江县| 沙田区| 盱眙县| 皋兰县| 沂水县| 镇远县| 翼城县| 义马市| 汕尾市| 灵台县| 乌苏市| 万全县| 松阳县| 横峰县| 米易县| 湘阴县| 临沭县| 金乡县| 光山县| 泰顺县| 肇源县| 哈尔滨市| 饶阳县| 石林| 诏安县| 彰化市| 黄浦区|