python筆記2
三、python指令碼示例
---------------------------------------------------
DEMO ONE:
建立一個備份重要檔案的程式:
1.python 如何呼叫系統命令,並分析輸出
zip_command = "zip -qr '%s' %s" % (target, ' '.join(source))
os.system(zip_command)
示例:
import os
source_dir = ['/home/tk']
target_dir= '/home/wangmin'
if not os.path.exists(target_dir):
os.mkdir(target_dir)
print 'create dir succefully!'
gzip_command = "zip -qr '%s' %s" % (target_dir, ' '.join(source_dir))
if os.system(gzip_command) == 0:
print 'backup succefully to ',target_dir
else:
print 'backup failed'
---------------------------------------------------
DEMO TWO:
1.讀取檔案並列印
2.對引數進行判斷
以--開頭:
若為version列印版本資訊
若為help列印幫助資訊
否則:
遍歷所有引數指向的檔案並列印。
---------------------------------------------------
#!/usr/bin/python
class fileprocess:
def readfile(filename):
f=file(filename)
while true:
line=f.readline()
if len(line) == 0:
break
print line,
f.close()
#process options
if len(sys.argv)<2:
print "no action to do "
sys.exit()
if sys.argv[1].startwith('--'):
option=sys.argv[1][2:]
if option == 'version':
print "the version is Version 1.2"
if option == 'help':
print '''This program prints files to the standard output.
Any number of files can be specified.
Options include:
--version : Prints the version number
--help : Display this help'''
else:
print "unknow options"
sys.exit()
else:
for filename in sys.argv[1:]:
readfile(filename)
def repeat():
return lambda s:s*n
myfun=repeat(2)
print myfun('hello')
---------------------------------------------------[@more@]
---------------------------------------------------
DEMO ONE:
建立一個備份重要檔案的程式:
1.python 如何呼叫系統命令,並分析輸出
zip_command = "zip -qr '%s' %s" % (target, ' '.join(source))
os.system(zip_command)
示例:
import os
source_dir = ['/home/tk']
target_dir= '/home/wangmin'
if not os.path.exists(target_dir):
os.mkdir(target_dir)
print 'create dir succefully!'
gzip_command = "zip -qr '%s' %s" % (target_dir, ' '.join(source_dir))
if os.system(gzip_command) == 0:
print 'backup succefully to ',target_dir
else:
print 'backup failed'
---------------------------------------------------
DEMO TWO:
1.讀取檔案並列印
2.對引數進行判斷
以--開頭:
若為version列印版本資訊
若為help列印幫助資訊
否則:
遍歷所有引數指向的檔案並列印。
---------------------------------------------------
#!/usr/bin/python
class fileprocess:
def readfile(filename):
f=file(filename)
while true:
line=f.readline()
if len(line) == 0:
break
print line,
f.close()
#process options
if len(sys.argv)<2:
print "no action to do "
sys.exit()
if sys.argv[1].startwith('--'):
option=sys.argv[1][2:]
if option == 'version':
print "the version is Version 1.2"
if option == 'help':
print '''This program prints files to the standard output.
Any number of files can be specified.
Options include:
--version : Prints the version number
--help : Display this help'''
else:
print "unknow options"
sys.exit()
else:
for filename in sys.argv[1:]:
readfile(filename)
def repeat():
return lambda s:s*n
myfun=repeat(2)
print myfun('hello')
---------------------------------------------------[@more@]
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23937368/viewspace-1056201/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python學習筆記(2)Python筆記
- Python 筆記-2-1-Python 概述Python筆記
- python2 httplib 筆記PythonHTTP筆記
- python筆記(2) 正規表示式Python筆記
- python爬蟲—學習筆記-2Python爬蟲筆記
- fluent python 讀書筆記 2–Python的序列型別2Python筆記型別
- fluent python 讀書筆記 2--Python的序列型別2Python筆記型別
- Python機器學習筆記:SVM(2)——SVM核函式Python機器學習筆記函式
- Python 學習筆記-2-1-變數Python筆記變數
- python 筆記Python筆記
- python筆記Python筆記
- Day 2 筆記筆記
- docker 筆記2Docker筆記
- sqlserver筆記2SQLServer筆記
- makefile筆記(2)筆記
- cassandra筆記2筆記
- HTML筆記(2)HTML筆記
- fluent python讀書筆記2—Python的序列型別1Python筆記型別
- Python數模筆記-NetworkX(2)最短路徑Python筆記
- Python學習筆記2:基本資料型別Python筆記資料型別
- Python爬蟲學習筆記-2.Requests庫Python爬蟲筆記
- Python Web 開發學習 - 學習筆記(2)- 啟動PythonPythonWeb筆記
- fluent python讀書筆記2---Python的序列型別1Python筆記型別
- python openpyxl筆記Python筆記
- python筆記(3)Python筆記
- python筆記3Python筆記
- Python筆記5Python筆記
- python筆記-5Python筆記
- python筆記1Python筆記
- 【show me the code】Python練習題&語法筆記 2Python筆記
- Python數模筆記-Sklearn(2)樣本聚類分析Python筆記聚類
- Python學習筆記(2)慎重使用全域性變數Python筆記變數
- Python讀書筆記:細節決定成敗(2)Python筆記
- 『筆記』2-SAT筆記
- linux筆記2Linux筆記
- 社群使用筆記2筆記
- HTML DOM筆記2HTML筆記
- c++筆記2C++筆記