Answers for "python3 seconds to date time"

-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

Python Answers by Framework

Browse Popular Code Answers by Language