荒废了两个星期没学java了,今天一心想突破"日历查询"这个小程序。先用比较简单的python实现下。

无奈天资愚钝,想了一个上午。最后卡在了日期排列的问题上,只好去参考下别人的代码。

参考CSDN大牛: http://blog.csdn.net/jlshix/article/details/46970563

从简单的开始,想想既然是查询日历。打开下手机,大体是这种模样。那么我们就按照这种格式,来

设计程序吧。

【Time系列四】查询各月份的日历-LMLPHP

首先,之前讲到的,用(%)求余符号求星期的。今天是10月30号—周日,那么如何求出若干天后是星

期几呢? 思路就是,我们把周日定为0,一天后的周一自然就是1,依此类推,周六就是六啦。那么13

天后,就是(0+13) % 7 = 5, 周五哦......

 # coding: utf-8

 print u"今天是周日!"
query = raw_input(">>> ") weeks = {
0: u"周日",
1: u"周一",
2: u"周二",
3: u"周三",
4: u"周四",
5: u"周五",
6: u"周六",
} print query + u"天后是" + weeks[(int(query) + 0) % 7]

【Time系列四】查询各月份的日历-LMLPHP

------------------------------------------------------------------------------------------------------------------------------------------------------------

现在就利用之前做过的自动关机脚本的原理,以1970年1月1日午夜零点,也就是周四为基点。来算出从它

到现在总共过了多少秒,然后再转化为总共多少天,再算出若干天之后是星期几。

【注: 2016年10月31号是周一】

 # coding: utf-8

 import time
import datetime
#--------------------------------------------#
# 把当前的时间转化为指定格式 "年/月/日 时:分:秒" #
# 把当前时间转化为datetime.datetime的类型 #
# 得出从1970年元旦0点至今的总秒数 #
# 再将总秒数转化为总天数 #
#---------------------------------------------#
currTime = time.strftime("%Y/%m/%d %H:%M:%S")
dt = datetime.datetime.strptime(currTime, "%Y/%m/%d %H:%M:%S")
currSeconds = time.mktime(dt.timetuple())
currDays = currSeconds / (3600 * 24) weeks = {
0: u"周日",
1: u"周一",
2: u"周二",
3: u"周三",
4: u"周四",
5: u"周五",
6: u"周六"
} print weeks[int((currDays + 4) % 7)]

--------------------------------------------------------------------------------------------------------------------------------------------------------------

其实嘛,这个小程序的难点就在于日历日期的排版上。大家可以看出来,除了第一行和最后一行,每一行都是有七个数。

所以重点就在于找出第一个数字也就是每个月的1号到底是周几。然后根据0对应周日,1对应周一等等按空格排列。从第

一个数字的空格情况上可以推断。周六的话,距离行开头有5 * 6个空格,加上开头的三个空格。(一二三这些中文分别占

两个空格,字与字之间隔三个空格。)对于1之后的其它数字,都是"4d"占有四个空格(包括其自身)的位置。所以这个开头

的三个空格是不能省略的。

 # coding: utf-8

 import time
import datetime # 格式化日期: %Y表示年, %m表示月, %d表示日
# 注意将字符串型(string)转换成整数型(int)
year = int(time.strftime("%Y"))
month = int(time.strftime("%m"))
day = int(time.strftime("%d")) #--------------------------------------------#
# 当前时间 #
# 把当前时间转化为datetime.datetime对象 #
# 自1970年1月1日以来到今天总共过了多少秒 #
# 直至今天总共过了多少天 #
# 直至当月的1号总共过了多少天 #
#--------------------------------------------#
currTime = time.strftime("%Y/%m/%d %H:%M:%S")
dt = datetime.datetime.strptime(currTime, "%Y/%m/%d %H:%M:%S")
totalSeconds = time.mktime(dt.timetuple())
totalDays = totalSeconds / (3600 * 24)
start_day = int(totalDays -int(day) + 1) index = (4 + start_day) % 7 def is_leap_year(year):
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False def get_num_of_days_in_month(year, month):
if month in (1, 3, 5, 7, 8, 10, 12):
return 31
elif month in (4, 6, 9, 11):
return 30
elif is_leap_year(year):
return 29
else:
return 28 def print_calender(year, month):
# 打印日历正文
# print + 逗号会多一个空格
print u" < %s年%s月" % (year, month)
print "-----------------------------------"
print u" 日 一 二 三 四 五 六" for i in range(1, get_num_of_days_in_month(year, month) + 1):
if i == 1:
print " ", # 打印行首的三个空格
print " " * 5 * index + "%d" % 1, # 从星期几开始则空几个空格
else:
print "%4d" % i, # 宽度控制, 4 + 1
if (4 + start_day + i - 1) % 7 == 6:
print # 当日期转到周六时换行 print_calender(year, month)

查询当月日历

【Time系列四】查询各月份的日历-LMLPHP

上面这种是用到time 和 datetime 模块的,日期要转换为时间戳,稍显麻烦。所以下面我们用另一种直接计算天数的,

并且定义了多个函数,相信模块化的形式会更加便于理解。

 # coding: utf-8

 import time

 # 将日期格式化成字符串(string), 注意转换成整数型(int)
year = int(time.strftime("%Y"))
month = int(time.strftime("%m")) def is_leap_year(year):
# 判断是否闰年
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False def get_num_of_days_in_month(year, month):
# 每个月有多少天, 闰年和平年的2月(平月)分别是29和28天
if month in (1, 3, 5, 7, 8, 10, 12):
return 31
elif month in (4, 6, 9, 11):
return 30
elif is_leap_year(year):
return 29
else:
return 28 def get_total_days(year, month):
# 自从1970年1月1日以来过了多少天
days = 0 for y in range(1970, year):
if is_leap_year(y):
days += 366
else:
days += 365
for m in range(1, month):
days += get_num_of_days_in_month(year, m) return days def get_start_day(year, month):
# 返回每个月的1号是星期几
return (4 + get_total_days(year, month)) % 7 def print_calender(year, month):
# 打印日历正文
print u" < %s年%s月" % (year, month)
print "-----------------------------------"
print u" 日 一 二 三 四 五 六"
for i in range(1, get_num_of_days_in_month(year, month) + 1):
if i == 1:
print " " + " " * 5 * get_start_day(year, month) + "%d" % 1,
else:
print "%4d" % i,
if (get_start_day(year, month) + i - 1) % 7 == 6:
print print_calender(year, month)

改进版

-------------------------------------------------------------------------------------------------------------------------------------

接下来是终极版的日历,只能查询当月的日历,实用性大打折扣。所以我们要能查到所有年份所有月份的日历,这才好玩!

 # coding: utf-8

 import re  # 导入正则表达式re: (regex)
import time # 输入日期, 2016/11或2016-11或2016 11的格式均可
# 用re.findall匹配所有数字, 并以列表的形式保存
date = raw_input(u"请输入您想要查询的日期: ".encode("gbk"))
date_list = re.findall("\d+", date)
year = int(date_list[0])
month = int(date_list[1]) def is_leap_year(year):
# 判断是否闰年
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False def get_num_of_days_in_month(year, month):
# 返回各个月的天数
# 注意: 闰年和平年的2月(平月)分别是29和28天
if month in (1, 3, 5, 7, 8, 10, 12):
return 31
elif month in (4, 6, 9, 11):
return 30
elif is_leap_year(year):
return 29
else:
return 28 def get_total_days(year, month):
# 得出自1970年1月1日到指定日期的天数
total_days = 0
for y in range(1970, year):
if is_leap_year(y):
total_days += 366
else:
total_days += 365
for m in range(1, month):
total_days += get_num_of_days_in_month(year, m)
return total_days def get_start_day(year, month):
# 得出每个月的1号是星期几
return (4 + get_total_days(year, month)) % 7 def print_calender(year, month):
# 打印日历正文
# print + 逗号会多出一个空格
print u" < %s年%s月" % (year, month)
print "------------------------------------"
print u" 日 一 二 三 四 五 六"
# 索引上限记得加1
for day in range(1, get_num_of_days_in_month(year, month) + 1):
if day == 1:
print " " + " " * 5 * get_start_day(year, month) + "%d" % 1,
else:
print "%4d" % day,
if (get_start_day(year, month) - 1 + day) % 7 == 6:
print print_calender(year, month)

查询任意月份的日历

11月

【Time系列四】查询各月份的日历-LMLPHP

10月

【Time系列四】查询各月份的日历-LMLPHP

2月

【Time系列四】查询各月份的日历-LMLPHP

--------------- 11.2号早

05-15 11:35