9/3/22

Simple Operations

 Ever wondered how many seconds are there in a month (30 days)?

Write a program to calculate and output the answer.




#your code goes here

days = 30

hours = 30 * 24

minutes = 60 * hours 

seconds = 60 * minutes 


print(seconds)

Blog Archive