Answers for "time.mktime python"

22

python time library

#also see datetime
import time
now = time.time()
print(now)
Posted by: Guest on February-21-2020
0

time.mktime

#!/usr/bin/python3
import time
import datetime

start = "10/03/2021 08:00:00"
timestmp_start=int(time.mktime(datetime.datetime.strptime(start, "%d/%m/%Y %H:%M:%S").timetuple()))*1000
date_start=datetime.datetime.fromtimestamp(timestmp_start/1000).strftime("%d/%m/%Y %H:%M:%S")


#output:
#timestmp_start: 1615343400000
#date_start: "10/03/2021 08:00:00"
Posted by: Guest on March-12-2021
2

time python

#import time module:
import time
#module has various attributes: 
dir(time)
[..., 'localtime', 'mktime', 'sleep', 'sleep_ms', 'sleep_us', 'ticks_add', 'ticks_cpu', 'ticks_diff', 'ticks_ms', 'ticks_us', 'time']

#default expression is in seconds with zero being start of runtime
secFromStart = time.time()
Posted by: Guest on December-28-2020
0

time module python

import time
Posted by: Guest on December-13-2020

Python Answers by Framework

Browse Popular Code Answers by Language