gs = ["DO", "LU", "MA", "ME", "GI", "VE", "SA"]
day = 1
weekday = 5
while day <= 30:
    print(gs[day])
    day = day + 1
    weekday = weekday + 1
    if weekday == 7:
        weekday = 0

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: