Iterating through list in Python using For loop

PHOTO EMBED

Fri Sep 01 2023 10:22:02 GMT+0000 (Coordinated Universal Time)

Saved by @pythonHub #python #python-hub #basics

wizard_list = ["Wand", "Cauldron", "crystal phials", \
        "telescope", "brass scales", "Owl", \
        "Cat", "Toad", \
        "Feather"]

for items in wizard_list:
    print(items)
content_copyCOPY