Timeit – comparing code snippet performance
Before we can start improving performance, we need a reliable method to measure it. Python has a really nice module (timeit
) with the specific purpose of measuring execution times of bits of code. It executes a bit of code many times to make sure there is as little variation as possible and to make the measurement fairly clean. It's very useful if you want to compare a few code snippets. Following are example executions:
# python3 -m timeit 'x=[]; [x.insert(0, i) for i in range(10000)]' 10 loops, best of 3: 30.2 msec per loop # python3 -m timeit 'x=[]; [x.append(i) for i in range(10000)]' 1000 loops, best of 3: 1.01 msec per loop # python3 -m timeit 'x=[i for i in range(10000)]' 1000 loops, best of 3: ...
Get Mastering Python now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.