Print number of seconds in a year in Python


Write a program in python to Print number of seconds in a year in python

days=365
hours=24
minutes=60
seconds=60
print("Number of Seconds in a Year :", days*hours*minutes*seconds)

Output:-


Number of Second in a Year : 31536000


Post a Comment

0 Comments