Answers for "convert seconds to datetime python3"

-1

Python3 seconds to datetime

>>> from datetime import datetime
>>> datetime.fromtimestamp(1485714600).strftime("%A, %B %d, %Y %I:%M:%S")
'Sunday, January 29, 2017 08:30:00'
Posted by: Guest on May-19-2021

Code answers related to "convert seconds to datetime python3"

Python Answers by Framework

Browse Popular Code Answers by Language