x = ['a', 'b']y = 'c'print(list(map(lambda x: x+y, x)))# y不定义的话可以写成x = ['a', 'b']print(list(map(lambda x: x+'c', x)))