python os.system
http://www.cnblogs.com/wanpython/archive/2010/12/15/1906468.html
分享python os.system一點心得
我記得在上次的文章中寫到了,用python popen處理一些系統的命令它會返回一個物件,比如:
import os
print os.popen('ping g.cn')
它返回一個檔案物件,你可以對這個檔案物件進行相關的操作。
但是如果你想能夠直接看到執行結果的話,那就要用到,用了以後,立竿見影!
還是上面的問題:
import os
print os.system('ping g.cn')
輸出的結果是:
64 bytes from 203.208.37.99: icmp_seq=0 ttl=245 time=36.798 ms
64 bytes from 203.208.37.99: icmp_seq=1 ttl=245 time=37.161 ms
其實這個輸出的結果和你在控制檯上執行ping g.cn的效果是一樣的,只不過是用到了的模組來完成。
感興趣的話,可以用python os.system 來嘗試更多的系統命令,從而實現更多的功能。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27042095/viewspace-749911/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python os.system 和 os.popen的區別Python
- python os.system、os.popen、subprocess.Popen的區別Python
- python基礎之使用os.system來執行系統命令Python
- 【python】python安裝Python
- 【Python】Python使用redisPythonRedis
- Python 之父談 PythonPython
- 【Python】python練習Python
- 【Python】python 日期操作Python
- python ----python的安裝Python
- python:python的多程式Python
- 【Python】Python連線mysqlPythonMySql
- Python 3 能振興 PythonPython
- 【Python】Python安裝模組Python
- 【python】python APScheduler 框架Python框架
- python學習之初識pythonPython
- Python 序列化(Python IO)Python
- Python合集之Python函式Python函式
- 【Python】python類的繼承Python繼承
- 小白自學Python(一) -- Python教程Python
- 為Python加速 - python+memcachedPython
- Python 3 正在毀滅 PythonPython
- Python補充06 Python之道Python
- [python]python錯誤集錦Python
- Python list of class attributes - PythonPython
- 【python】Python 3 的新特性Python
- python--- 之The program 'python' can be found in the following packages: * python-minimal * python3PythonPackage
- python _Python
- PythonPython
- Python IDLE和Python的區別!Python入門教程Python
- Python補充02 Python小技巧Python
- Python 字串格式化(Python IO)Python字串格式化
- Python 檔案讀寫(Python IO)Python
- Python之將Python字串生成PDFPython字串
- python教程(一)·python環境搭建Python
- 小白自學Python(五)Python運算子Python
- 小白自學Python(六)Python字串(上)Python字串
- [python] Python型別提示總結Python型別
- 與 Python 之父聊天:更快的 Python!Python