Curso_Intensivo_de_PYTHON/chapter_04/magicians.py
2023-06-02 17:22:53 +02:00

6 lines
267 B
Python

magicians = ['alice', 'david', 'carolina']
for magician in magicians:
print(f"{magician.title()}, that was a great trick!")
print(f"I can't wait to see your next trick, {magician.title()}.\n")
print("Thank you, everyone. That was a great magic show!")