Number of seconds in a year

Created 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)

There's no corrections yet, hit the `Submit` button to send your code to the correction bot.

Keyboard shortcuts:

  • Ctrl-Enter: Send your code to the correction bot.
  • Escape: Get back to the instructions tab.

See solutions