Imagine you are going on a quest. You can't carry everything in your hands. You need a Backpack!
In Python, we call this a List (or Array). It holds many things in one variable.
We use square brackets [] to make a list.
Computers start counting from Zero!
Adding things:
backpack.append("Map")
Create a list called `food` with 3 items: "Pizza", "Apple", "Cake".
food = ["Pizza", "Apple", "Cake"]
Print the first item in your food list (Index 0!).
print(food[0])
Use .append() to add "Ice Cream" to the list, then print the whole list.
food.append("Ice Cream")
print(food)
1. What is the index number of the FIRST item?