今天我们来尝试使用python 的os.system来执行系统命令
可以使用如下方法:
import os
print os.system(‘ping www.pythontab.com’)
输出的结果是:
64 bytes from 223.26.58.21: icmp_seq=0 ttl=245 time=36.798 ms
64 bytes from 223.26.58.21: icmp_seq=1 ttl=244 time=37.561 ms
64 bytes from 223.26.58.21: icmp_seq=1 ttl=246 time=37.161 ms
64 bytes from 223.26.58.21: icmp_seq=1 ttl=245 time=35.123 ms
64 bytes from 223.26.58.21: icmp_seq=1 ttl=248 time=37.146 ms
这样就完成了这个简单的功能,就这么简单,两句话,哈哈
但是大部分动作都是由os模块来帮助我们完成了,现成的模块功能非常多,这是python的一大特色
下面我们再来做一个另外的例子:
import os
print os.system(‘ifconfig’)
执行以下……自己可以去实验以下哈
感兴趣的话,可以用python os.system 来尝试更多的系统命令……还是非常强大的