blob: 322a78f27eaa7448c9eb778e24c99c8f67f9e26d (
plain)
1
2
3
4
5
6
|
def wizard_spells(spell_book):
for spell in spell_book:
print(f"Abracadabra! {spell}.")
spell_list = ["Levitation", "Invisibility", "Fireball", "Teleportation"]
wizard_spells(spell_list)
|