字符串本身也是一种列表,以字符串为例:
>>> from functools import reduce >>> L = ['列表1', '列表2', '列表3'] >>> reduce(lambda x,y : set(x) & set(y), L) {'表', '列'}