17db096505
Both "bound" (like, length known) and "unbound" (length unknown) are tested. All of list, tuple, bytes, bytesarray offer approximately the same performance, with "unbound" case being 30 times slower.
9 lines
151 B
Python
9 lines
151 B
Python
import bench
|
|
|
|
def test(num):
|
|
for i in iter(range(num//10000)):
|
|
l = [0] * 1000
|
|
l2 = bytearray(map(lambda x: x, l))
|
|
|
|
bench.run(test)
|