Open In App

Python calendar module : iterweekdays() method

Last Updated : 04 Dec, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
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. iterweekdays() method returns an iterator for the week day numbers that will be used for one week. The first number from the iterator will be the same as the number returned by firstweekday().
Syntax: iterweekdays()
Parameter: no parameter
Returns: iterator for the week day numbers
Code #1: Python3 1==
# Python program to demonstrate working
# of iterweekdays() method

# importing calendar module
import calendar

# providing firstweekday = 0
obj = calendar.Calendar(firstweekday = 0)

for day in obj.iterweekdays():
    print(day)
Output:
0
1
2
3
4
5
6
  Code #2: Python3 1==
# Python program to demonstrate working
# of iterweekdays() method

# importing calendar module
import calendar

# providing firstweekday = 2
obj = calendar.Calendar(firstweekday = 2)

for day in obj.iterweekdays():
    print(day)
Output:
2
3
4
5
6
0
1

Next Article

Similar Reads