python在程序中调用系统命令

import os

cmd = 字符串形式的linux命令

error_code = os.system(cmd)

若执行成功,则返回0,否则返回错误码.

你可能感兴趣的:(Python学习笔记)