# -*- 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")
输出为:
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.