python输出指定月份日历的方法
时间:2021-11-29 16:22 作者:admin610456
本文实例讲述了python/' target='_blank'>python输出指定月份日历的方法。分享给大家供大家参考。具体实现方法如下:
#!/usr/bin/Pythonimport calendarcal = calendar.month(2008, 1)print "Here is the calendar:"print cal;
运行结果如下:
Here is the calendar: January 2008Mo Tu We Th Fr Sa Su 1 2 3 4 5 6 7 8 9 10 11 12 1314 15 16 17 18 19 2021 22 23 24 25 26 2728 29 30 31
希望本文所述对大家的Python程序设计有所帮助。
(责任编辑:admin)