Lesson 16: Lists: Storing Groups of Information
What if a program needs to remember five scores instead of just one? Creating a separate variable for every score would make the program harder to organise and update. Python’s answer is a list: one named collection that keeps several related values together. This section explains what a list is and why its values can be treated as an ordered group.
