Python's method of finding the intersection, union, and difference (complement) of multiple lists

intersection

"""以a、b、c为实验对象,求a、b、c都同时拥有的元素"""
a = [0,1,2,3,4]
b = [0,2,6]
c =

Guess you like

Origin blog.csdn.net/weixin_35770067/article/details/131701342