python 输出指定年月份的日历!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 输出指定年月份的日历!相关的知识,希望对你有一定的参考价值。
输出指定年月份的日历,没输出一个月份间隔1s.
#!/usr/bin/python #coding=utf-8 import time import calendar k=0 def nowtime(): t1=time.time() localt1=time.localtime(t1) localtime=time.asctime(localt1) print localtime while k<=1: k+=1 time.sleep(2) nowtime() for i in xrange(1,13): #12个月份 print ‘2017年%s月的日历\n‘%i,calendar.month(2017,i) #可以更改年份 time.sleep(1)
献上小程序一枚。
本文出自 “全球互联云主机Q874247458” 博客,请务必保留此出处http://gosweet.blog.51cto.com/11759495/1899237
以上是关于python 输出指定年月份的日历!的主要内容,如果未能解决你的问题,请参考以下文章