首页 > 代码库 > python与系统做交互常用的模块和使用方法

python与系统做交互常用的模块和使用方法

1.使用os模块与系统做简单命令的交互

>>>import os

>>>os.popen(‘pwd‘)

<open file ‘pwd‘, mode ‘r‘ at 0x7f6e27b6a420>

>>>a = os.popen(‘pwd‘).read()

>>>a

‘/root\n‘

 

2.使用commands模块

>>>import commands

>>>res = commands.getstatusoutput(‘pwd‘)

>>>res

(0, ‘/root‘)

0表示执行结果的状态,非零的话表示执行结果有错误。

python与系统做交互常用的模块和使用方法