calculate_day_of_the_week

calculate_day_of_the_week(total_days: int, starting_day: str) -> 

Calculates the day of the week after a given number of days starting from a specified day.

Parameters:
NameDescription
total_daysThe number of days to calculate.

Type: int
starting_dayThe starting day of the week, should be one of ‘Monday’, ‘Tuesday’, ‘Wednesday’, etc.

Type: str