面试题答案一键面试template = '元素是:%s' my_list = ['苹果', '香蕉', '橙子'] for item in my_list: print(template % item)