8 lines
133 B
Python
8 lines
133 B
Python
|
import time
|
||
|
from time import perf_counter
|
||
|
|
||
|
time_count = time.perf_counter()
|
||
|
endtime = time_count + 10
|
||
|
|
||
|
while (time_count < endtime):
|