+ 1
How to code how many seconds in a month??
I dont know how to answer the python course im stuck.
3 Answers
+ 2
You can try this:
print(60*60*24*30)
+ 1
Just calculate how many seconds is in one minute, in one hour, in one day, and then in one month
+ 1
It's just sumple multiplication, you can display the result on screen by print(60*60*24*30)