programming-examples/python/Date/Python program to get current time in milliseconds.py

3 lines
73 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
import time
milli_sec = int(round(time.time() * 1000))
print(milli_sec)