Python 练习

1. 题目

请编写程序,用于生成指定日期的日历。

2. 分析

Calendar 模块有很广泛的方法用来处理年历和月历,例如打印某月的月历。

3. 实例

点我看答案
# 引入日历模块
import calendar

# 输入指定年月
yy = int(input("输入年份: "))
mm = int(input("输入月份: "))
# 显示日历
print(calendar.month(yy, mm))

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""