帮我用python写个日历
时间: 2023-03-14 07:10:43 浏览: 119
python写日历
很高兴为你服务!这里有一段python代码可以帮助你创建一个日历:import calendar
import datetimedef printCalendar():
today = datetime.date.today()
print(calendar.month(today.year, today.month))printCalendar()
阅读全文