Quick benchmarking of Python code with timeit
How long does [insert code snippet] take in Python? Find out with the timeit module, in Python since 2.3. Below I time how long it takes to make a list with a 1000 zeros, [0,0,0,…], using different Python code snippets.…