My question is how I'd be able to add the minutes and calculate them into hours and minutes.
Here some code that I have:
import math
def main():
total = 0
for i in range (number):
task = int(input('How many minutes will this task take? '))
print(task)
total += task
print(total)
hour = total // 60
minute = hour % 0
print('Hour(s): ', hour, 'Minute(s): ', minute)
main()