mirror of
https://github.com/migatu/conjurer.git
synced 2026-07-14 21:38:38 +00:00
7 lines
123 B
Python
7 lines
123 B
Python
import time
|
|
first_time = time.time_ns()
|
|
|
|
time.sleep(1)
|
|
time_diff = time.time_ns() - first_time
|
|
print(time_diff)
|
|
#2000149433 |