calendar-python

million_yh發表於2024-07-18
from calendar import *

# year = int(input("Please Enter Year:"))
year = 2024

date = calendar(year,2,1,6,5)#year, month abbr num, row distance, column distance, month num per row
print(date)

calendar-python