Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to convert days into seconds in python using time.time()

days = input("Number of days
")
seconds = days * 24 * 60 * 60 # your answer :)
print(seconds) # you can check this by printing, if you want...
 
PREVIOUS NEXT
Tagged: #convert #days #seconds #python
ADD COMMENT
Topic
Name
2+1 =