>>> a = [1,2,3] >>> b = [2,4,5] >>> list(set(a).intersection(set(b))) [2] >>> list(set(a).union(set(b))) [1, 2, 3, 4, 5] >>> list(set(a).difference(set(b))) [1, 3] >>> list(set(b).difference(set(a))) [4, 5] >>>
博客园 © 2004-2025 浙公网安备 33010602011771号 浙ICP备2021040463号-3