dabase
/
e
/
Setting/initializing a list of certain length
Edit
RecentChanges
History
Preferences
Branchable
?
Discussion
Another tip from deltab_ from #python.
>>> l = [0] * 5 >>> l [0, 0, 0, 0, 0]