python中如何打印某月日历

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中如何打印某月日历相关的知识,希望对你有一定的参考价值。

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

import calendar

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

 

 

输出如下:

以下输出2017年10月份的日历:
    October 2017
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


***Repl Closed***

 

以上是关于python中如何打印某月日历的主要内容,如果未能解决你的问题,请参考以下文章

2.2打印日历实现输出某年某月

c语言的科学与艺术 学习笔记--第5章习题 打印1900年以前的日历

java实验之打印万年历

蓝桥杯 算法提高 5-3日历

万年历

万年历