Python Program to Print Calendar of any month of any year || Calendar


SOURCE CODE

import calendar year=int(input("Year:")) month=int(input("Month:")) mycalendar=calendar.month(year,month) print(mycalendar)

Comments

Popular posts from this blog