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.
itermonthdays()
method returns an iterator of a specified month and a year. Days returned will simply be day numbers. itermonthdays()
method is similar to itermonthdates()
.
Syntax: itermonthdays(year, month) Parameter: year: year of the calendar month: month of the calendar Returns: an iterator of the specified month.
Code #1:
# Python program to demonstrate working # of itermonthdays() method # importing calendar module import calendar year = 2018 mnth = 9 obj = calendar.Calendar() # iteratign with itermonthdays for day in obj.itermonthdays(year, mnth): print (day) |
Output:
0 0 0 0 0 1 2 3 4 5 6 . . 29 30
Code #2:
# Python program to demonstrate working # of itermonthdays() method # importing calendar module import calendar # use with firstweekday = 5 obj = calendar.Calendar(firstweekday = 2 ) # iteratign with itermonthdays for day in obj.itermonthdays( 2018 , 4 ): print (day) |
Output:
0 0 0 0 1 2 3 4 5 . . 28 29 30 0
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.