共计 211 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用 calendar 模块来输出对应的月份。以下是一个示例代码:
import calendar
# 输入年份和月份
year = int(input(" 请输入年份:"))
month = int(input(" 请输入月份:"))
# 输出对应的月历
cal = calendar.month(year, month)
print(cal)
运行以上代码,用户输入年份和月份后,程序将输出对应的月历信息。
丸趣 TV 网 – 提供最优质的资源集合!
正文完