Answers for "python unix time"

5

how to get unix timestamp in python

import time
time.time() #returns the unix timestamp
Posted by: Guest on January-05-2020
2

get datetime from unix timestamp python3

from datetime import datetime

timestamp = 1545730073
dt_object = datetime.fromtimestamp(timestamp)

print("dt_object =", dt_object)
print("type(dt_object) =", type(dt_object))
Posted by: Guest on November-10-2020
1

time.time()

from time import time

# 1 January 1970 is the standard date that all computers measure time against 
# Prints the number of seconds that have passed since 1 January 1970
print(time())
Posted by: Guest on December-31-2020

Python Answers by Framework

Browse Popular Code Answers by Language