- 2
how many seconds are there in a month (30 days)? Write a program to calculate and output the answer.
This is a python question. I need help on it
3 Respostas
+ 3
month =30 days
day=24 hours
hour= 60 minutes
minute=60 seconds
multiply all these and show the output .
0
You mean this:
print (60*60*24*30)
0
Samuel Adesanya yes...