💡 Challenge
Use a loop to go through a list and print each item — great for packing lists, menus, or adventure gear!
What to do:
-
1
Create a list: items = ["sword", "shield", "potion"]
-
2
Loop through it: for item in items:
-
3
Print each item inside the loop!
⚙ Solution
items = ["sword", "shield", "potion", "map"]
for item in items:
print("Packing:", item)
print("All packed! Ready for adventure!")