python
null_3866
这个作者很懒,什么都没留下…
展开
-
python备份文件
任务:你想对某个目录树中的被修改过的文件多次备份,以防止某次修改意外地抹去了你的编辑结果。 周期性的执行以下python脚本可以对指定目录下的文件进行备份。#-*- coding:utf-8 -*-import sys,os,shutil,filecmpMAXVERSIONS = 100def backup(tree_top, bakdir_name="bakdir...原创 2014-05-09 09:51:25 · 146 阅读 · 0 评论 -
python判断闰年
#-*- coding:utf-8 -*-try: year = int(raw_input('请输入年份(如2008): '))except: print '请输入正确的年份' exit()is_leap = Falseif year % 100 == 0 and year % 400 == 0: is_leap = Trueelif year ...原创 2014-03-12 10:17:17 · 343 阅读 · 0 评论 -
python计算两个日期间隔的天数
#-*- coding:utf-8 -*-#计算2008年10月1日是这一年的第几天?(2008年1月1日是这一年的第一天)import datetimeprint (datetime.datetime(2008,10,1)-datetime.datetime(2008,1,1)).days ...原创 2014-03-12 10:21:45 · 1998 阅读 · 0 评论 -
一道python笔试题
有一个record.txt的文档,内容如下:# name, age, scoretom, 12, 86Lee, 15, 99Lucy, 11, 58Joseph, 19, 56第一栏为姓名(name),第二栏为年纪(age),第三栏为得分(score)现在,写一个Python程序,1)读取文件2)打印如下结果:得分低于60的人都有谁?...原创 2014-03-12 11:02:20 · 494 阅读 · 0 评论