Python 生成日歷

Document 對(duì)象參考手冊 Python3 實(shí)例

以下代碼用于生成指定日期的日歷:

# Filename : test.py
# author by : hgci.cn

# 引入日歷模塊
import calendar

# 輸入指定年月
yy = int(input("輸入年份: "))
mm = int(input("輸入月份: "))

# 顯示日歷
print(calendar.month(yy,mm))

執(zhí)行以上代碼輸出結(jié)果為:

輸入年份: 2015
輸入月份: 6
     June 2015
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

Document 對(duì)象參考手冊 Python3 實(shí)例