Quiz: Count, Collect, and Organize
Test your knowledge of Python lists—how to store, access, modify, and loop through values.
We'll cover the following...
We'll cover the following...
In the last lesson, you explored using lists to store multiple values in one place. You practiced creating lists, accessing specific items using indexes, adding and removing items with .append()
and ...