Use this to study for the quiz on lists.
print(games[0])sports.append("soccer")
numbers = [10, 20, 30]subjects = ["Math", "English", "Art", "Music"] print(subjects[1])
animals = ["cat", "dog", "bird", "fish"]
animals.append("eagle")
animals[1] = "wolf"
print(animals)
for item in foods:
print(item)
grades = [] grades.append(90) grades.append(85) grades.append(77) print(len(grades))
You have a shield You have a armor You have a map You have a bow
print(scores[-1])