首页 » 技术分享 » python打印一年的年历【2018】

python打印一年的年历【2018】

 

 

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 range(1,13):
    print(i,calendar.month(2018,i))
    time.sleep(1)

结果打印如下:

转载自原文链接, 如需删除请联系管理员。

原文链接:python打印一年的年历【2018】,转载请注明来源!

0