python 教程 第八章、 第一个python程序

来源:互联网 发布:在线网络个人理财公司 编辑:程序博客网 时间:2024/05/21 10:50

第八章、 第一个python程序

#!/usr/bin/env python
import os
import sys
import time 
source = [r'G:\s1', r'G:\s2']
target_dir = r'G:\d' + os.sep 
today = target_dir + time.strftime('%Y%m%d')
now = time.strftime('%H%M%S') 
comment = raw_input('Enter a commnet -->')
if  len(comment) == 0:
    target = today + os.sep + now
else:
    target = today + os.sep + now + \
    '_' + comment.replace(' ','_') 
if not os.path.exists(today):
    os.mkdir(today) 
rar_command = r"D:\WinRAR\rar.exe a" + " %s %s" %(target, ' '.join(source)) 
if os.system(rar_command) == 0:
    print "pass"
else:
    print "fail"
原创粉丝点击