路边小丑 发表于 2023-7-7 00:20:40

Python中os.system()、subprocess.run()、call()、check_output()的用法

1.os.system()

os.system() 是对 C 语言中 system() 系统函数的封装,允许执行一条命令,并返回退出码(exit code),命令输出的内容会直接打印到屏幕上,无法直接获取。
示例:
# test.pyimport osos.system("ls -l | grep test")    # 允许管道符# 测试执行$ ll
页: [1]
查看完整版本: Python中os.system()、subprocess.run()、call()、check_output()的用法