获取某月日历
Calendar模块有很广泛的方法用来处理年历和月历,例如打印某月的月历:
实例(Python 2.0+)
#!/usr/bin/python# -*- coding: UTF-8 -*-importcalendarcal = calendar.month(2016, 1)print"以下输出2016年1月份的日历:"printcal
以上实例输出结果:
以下输出2016年1月份的日历:
January2016
MoTuWeThFrSaSu
1 2 3
4 5 6 7 8 910
11121314151617
18192021222324
25262728293031