cara mengulangi nama hari di python

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