You are on page 1of 2

‭ ay_of_week = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday",‬

d
‭"Saturday"]‬

‭day = int(input("Enter today's day:"))‬

‭lap = int(input("Enter the number of days elapsed since day:"))‬

f‭uture_day_index = (day + lap) %7‬


‭future_day = day_of_week[future_day_index]‬

‭print(future_day)‬

You might also like