python time in milliseconds code example
Example 1: python get time milliseconds
import time
def current_milli_time():
return round(time.time() * 1000)
Example 2: python datetime milliseconds
from datetime import datetime
print(datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3])
Example 3: python datetime milliseconds
from datetime import datetime
dt_obj = datetime.strptime('20.12.2016 09:38:42,76',
'%d.%m.%Y %H:%M:%S,%f')
millisec = dt_obj.timestamp() * 1000
print(millisec)
Example 4: python milisegundos
import time
instante_inicial = time.time()
tempo_decorrido = time.time() - instante_inicial
print("Milisegundos decorridos:", tempo_decorrido