Answers for "current timestamp as a string in python"

2

timestamp in python

import time 
ts = time.time() 
// OR
import datetime; 
ct = datetime.datetime.now() 
ts = ct.timestamp()
Posted by: Guest on January-06-2021
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 "current timestamp as a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language