# -*- coding: GBK -*- magicians = ['alice', 'david', 'carolina'] for magician in magicians: print(magician.title() + ", that was a great trick!") print("I can't wait to seee your next trick," + magician.title() + ".\n") print("Thank you, everyone.That was great magic show!")
輸出為
Alice, that was a great trick! I can't wait to seee your next trick,Alice. David, that was a great trick! I can't wait to seee your next trick,David. Carolina, that was a great trick! I can't wait to seee your next trick,Carolina. Thank you, everyone.That was great magic show!