mirror of
https://github.com/migatu/conjurer.git
synced 2026-07-14 13:34:40 +00:00
9 lines
126 B
Python
9 lines
126 B
Python
import time
|
|
|
|
first_time = time.time_ns()
|
|
|
|
time.sleep(1)
|
|
time_diff = time.time_ns() - first_time
|
|
print(time_diff)
|
|
# 2000149433
|