參考python簡明教程編寫了windows下的乙個打包程式
這裡有幾點需要注意
解壓就把 引數 a 換成 x
相關的7zip命令請參考
根據例子2優化上列程式如下
filename:backup_ver2.py
import os
import time
source=[r'"e:\study\2014\python-files\*"',r'"e:\study\2014\others\*"']
target_dir=r'e:\study\2014\backup'
today=target_dir+os.sep+time.strftime('%y%m%d')
if not os.path.exists(today):
os.mkdir(today)
print 'successfully ceated directory',today
now=time.strftime('%h%m%s')
target=today+os.sep+now+'.zip'
zip_command=r'd:\"program files (x86)"\7-zip\7zg.exe a -tzip "%s" -r %s' % (target, ' '.join(source))
print zip_command
if os.system(zip_command)==0:
print 'successful backup to', target
else:
print 'backup failed'
根據例子三改寫後的程式如下
python教學筆記 python學習筆記(一)
1.eval 函式 eval是單詞evaluate的縮寫,就是 求.的值的意思。eval 函式的作用是把str轉換成list,dict,tuple.li 1 1,2,3 print eval li 1 di 1 print eval di 1 tu 1 2,4,6 print eval tu 1 執...
python學習筆記
coding utf 8 coding utf 8 應該像八股文一樣在每個指令碼的頭部宣告,這是個忠告 為了解決中文相容問題,同時你應該選擇支援 unicode 編碼的編輯器環境,保證在執行指令碼中的每個漢字都是使用 utf 8 編碼過的。cdays 5 exercise 3.py 求0 100之間...
Python 學習筆記
python 學習筆記 def run print running.def execute method method execute run result running.condition false test yes,is true if condition else no,is false ...