0
there are 24 hours in a day, 60 minutes in an hour, and 60 seconds in a minute. Use the print() statement to output the result
I Didn't get it
4 ответов
+ 2
What part of
print(24 * 60 * 60)
are you struggling with?
You could also create variables from the information given
hours = 24
minutes = 60
seconds = 60
print(hours * minutes * seconds)
+ 2
Bhargav Reddy
This is just a 5th standard calculation.
1 - 24 hours in a day
2 - 60 minutes in an hour
3 - 60 seconds in a minute
4 - You have 30 days
5 - Now get how many seconds in 30 days
Now you know what to do.
+ 1
Those instructions sound quite dumb. Don't actually tell what you need to do.
0
I Need that Program