6 lines
281 B
Python
6 lines
281 B
Python
magicians = ["david", "alice", "carolina"]
|
|
for magician in magicians:
|
|
#print(magician)
|
|
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!") |