Respuesta :

Answer:

See the python code in the description below

Step-by-step explanation:

A Python program that calculates how many seconds in a week

Step one:

One Minute = 60 Seconds

One Hour = 60 Minutes

One Day = 24 Hours

One Week = 7 Days

Step two:

#Initialize the number of seconds in a week

number_of_weeks= int(input("enter the number of weeks here: "))

number_of_seconds_in_a_week=60*60*24*7*number_of_weeks

print("the number of seconds in", number_of_weeks, "week(s)", "is", number_of_seconds_in_a_week )

ACCESS MORE