Answers for "year to string python"

3

python from timestamp to string

from datetime import datetime

timestamp = 1545730073
dt_object = datetime.fromtimestamp(timestamp)

print("dt_object =", dt_object)
print("type(dt_object) =", type(dt_object))

# Output

dt_object = "2018-12-25 09:27:53"
type(dt_object) = <class 'datetime.datetime'>
Posted by: Guest on July-03-2020

Code answers related to "year to string python"

Python Answers by Framework

Browse Popular Code Answers by Language