# __author: "ZXYang"# date: 2020/12/9a = [1, 2, 3, 4, 5]def s(a1): return a1 + 10# 将a作为迭代值传入函数sprint(list(map(s, a)))