10 lines
144 B
Python
10 lines
144 B
Python
from time import perf_counter, time
|
|
|
|
ref = time() - perf_counter()
|
|
pass
|
|
|
|
def timing():
|
|
global ref
|
|
t = ref + perf_counter()
|
|
return t
|