A Brief Introduction to Lists
We know how to use variables to store values. So far our examples have been pretty small and well contained. What if we need to store 1,000 sets of data... are we really going to make 1,000 variables? In Python we use lists to store an ordered sequence of items.
There are a lot more to lists which we will cover at a later section. For now, being able to create them and store in variables is enough to dive into Pygame!
Last updated