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中如何打印某月日历的主要内容,如果未能解决你的问题,请参考以下文章