Calendar module allows to output calendars like program, and provides additional useful functions related to the calendar. Functions and classes defined in Calendar module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions. classcalendar.HTMLCalendar(firstweekday=0) can be used to generate HTML calendars. formatyear() method is one of the methods of HTMLCalendar instance. formatyear() method in Python is used to get year’s calendar as an HTML table.
Syntax: formatyear(year, width=3)
Parameter:year: year of the calendar
**width:**[Default value is 3] Specifies the width date column
Returns: Return an HTML table for an entire year.
Depends on the first weekday as specified in the constructor or set by the setfirstweekday() method.
Code #1:
Python3 `
Python program to demonstrate working of formatyear() method