python 求两个list的交集

python 求两个list的交集

 

r = list(set(data2).intersection(set(data)))
print(r[0]*r[1])

你可能感兴趣的:(python 求两个list的交集)