Number of seconds in a year
Created on June 5, 2021 by Julien Palard
Write a Python program displaying the number of seconds in 365 days.
You'll need the print function to display the result.
You'll need the *
operator
for the multiplications.
As an example, the number of seconds in a day can be printed using the following code:
print(60 * 60 * 24)