python
import time
millis = int(round(time.time() * 1000))
print millis
1
2
3
2
3
python
import time
current_milli_time = lambda: int(round(time.time() * 1000))
current_milli_time()
1
2
3
4
5
2
3
4
5