kuroko/bench/list.py

12 lines
172 B
Python
Raw Normal View History

from fasttimer import timeit
2021-04-14 16:25:22 +03:00
l = []
add = l.append
pop = l.pop
def func():
add(1)
pop()
print(min(timeit(func,number=100000) for x in range(10)), "list append")