码迷,mamicode.com
首页 > 编程语言 > 详细

Python时间calender模块介绍

时间:2017-04-28 20:17:44      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:pretty   print   utf-8   int   png   span   技术分享   方法   介绍   

获取某月日历

Calendar模块有很广泛的方法用来处理年历和月历,例如打印某月的月历:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

import calendar

cal = calendar.month(2016, 1)
print "以下输出2016年1月份的日历:"
print cal;

以上实例输出结果:

以下输出20161月份的日历:
    January 2016
Mo Tu We Th Fr Sa Su
             1  2  3
 4  5  6  7  8  9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31

技术分享

Python时间calender模块介绍

标签:pretty   print   utf-8   int   png   span   技术分享   方法   介绍   

原文地址:http://www.cnblogs.com/shellshell/p/6782969.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!