Python Exercise

Nana Arhin

New member
Joined
Jun 22, 2021
Messages
1
hour = int(input("Starting time (hours): "))
mins = int(input("Starting time (minutes): "))
dura = int(input("Event duration (minutes): "))

hour value = 12
minutes value =17
duration = 59

Hi everyone, I"m studying basics of python programming and I came across this exercise. Anyone with knowledge on how to go about it?
 
I'll do the first one (but note this is a math forum not a programming forum)...
Python:
print("hour value =",hour)
 
Top