Python 入門指南 5.0

exercise2102.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# 引入標準程式庫中的 calendar
import calendar

# 執行部分
if __name__ == "__main__":
    # 設定星期日為一個星期的第一天
    month = calendar.TextCalendar(firstweekday = 6)
    # 印出月曆
    print(month.formatmonth(2023, 10))

# 檔名: exercise2102.py
# 說明:《Python入門指南》的練習
# 網站: http://kaiching.org
# 作者: 張凱慶
# 時間: 2023 年 10 月

回到練習題目
上一頁 exercise2101.py
回 Python 入門指南 5.0 首頁
下一頁 exercise2103.py
回 Python 教材首頁
回程式語言教材首頁