Setting/initializing a list of certain length

Published

Another tip from deltab_ from #python.

>>> l = [0] * 5

>>> l

[0, 0, 0, 0, 0]