comment boucle sur le nom du jour en python

import calendar
for week_day_name in calendar.day_name:
    print(week_day_name)
Programmer of empires