programming-examples/python/Date/Python program to get current time in milliseconds.py
2019-11-15 12:59:38 +01:00

3 lines
73 B
Python

import time
milli_sec = int(round(time.time() * 1000))
print(milli_sec)