Lesson 8: The Lists
Lists are like backpacks where you can put many things together, instead of having a variable for each thing.
Creating a list
Use square brackets [].
friends = ["John", "Mario", "Peach"]
print(friends[0]) # Prints JohnYour Objective
Create a grocery list.