Python执行shell命令方法

时间:2026-02-14 01:19:06

1、系统和python版本

CentOS Linux release 7.5.1804 (Core) 

[root@node02-97 ~]# python -V

Python 2.7.5

Python执行shell命令方法

2、os.system("pwd") 

Python执行shell命令方法

3、os.popen('pwd','r')

Python执行shell命令方法

4、commands.getstatusoutput('ls')

Python执行shell命令方法

5、subprocess.call(['ls','-l'],shell=True)

Python执行shell命令方法

6、subprocess.check_output(["echo","hello world!"])

Python执行shell命令方法

7、os.spawnv(os.P_NOWAIT, 'ls', '-l') 

Python执行shell命令方法

© 2026 长短途
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com