Remember, there are 24 hours in a day, 60 minutes in an hour, and 60 seconds in a minute. Use the print() statement to output | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Remember, there are 24 hours in a day, 60 minutes in an hour, and 60 seconds in a minute. Use the print() statement to output

How to do this can you please tell me

15th May 2021, 6:20 AM
gujjala sai krishna
gujjala sai krishna - avatar
7 Answers
+ 5
Just print (24*60*60) gujjala sai krishna U r Welcome
15th May 2021, 6:34 AM
Sâñtôsh
Sâñtôsh - avatar
+ 2
Seconds in day? Easy Day = 24H H = 60M M = 60S So 1Day = 24 * 60 * 60 Seconds Code: Input the days Days = int(input()) print(Days * 24 * 60 * 60)
15th May 2021, 6:35 AM
Mani_K_A
+ 1
Thank you sooo much santhosh
15th May 2021, 6:44 AM
gujjala sai krishna
gujjala sai krishna - avatar
0
print(30*24*60*60)
31st Dec 2021, 9:45 AM
Aswin
0
You need to find how many minutes there are in a day. A day has 24 hours, each hour has 60 minutes. These values are stored in variables. Fill in the blanks to calculate and output the required value. int hours = 24; int minutes = 60; int result = hours Type minutes; System.out.println( Type );
9th Apr 2023, 4:45 PM
Mohammed Sameer Huddar
Mohammed Sameer Huddar - avatar
0
minutes_in_hour = 60 hours_in_day = 24 minutes_in_day = minutes_in_hour*hours_in_day print(minutes_in_day)
7th Jul 2023, 2:16 AM
Kawryie
Kawryie - avatar
0
Remember, there are 24 hours in a day, 60 minutes in an hour, and 60 seconds in a minute. console.log(30*24*60*60)
10th Jan 2024, 11:13 PM
Nadhiya C