first group of challenges
This commit is contained in:
5
challenges1-11/challenage-009.py
Normal file
5
challenges1-11/challenage-009.py
Normal file
@@ -0,0 +1,5 @@
|
||||
days = int(input('Enter the number of days : '))
|
||||
hours = days*24
|
||||
minutes = hours*60
|
||||
seconds = minutes * 60
|
||||
print('In {0} days there are {1} hours , {2} minutes and {3} seconds'.format(days, hours, minutes, seconds))
|
Reference in New Issue
Block a user