python set集合運算(交集,並集,差集,對稱差集)

版權聲明:本文爲轉載文章,原文地址:https://blog.csdn.net/sxingming/article/details/51922776點擊打開鏈接 1》交集 >>> x={1,2,3,4} >>> y={3,4,5,6} >>> x set([1, 2, 3, 4]) >>> y set([3, 4, 5, 6]) >>> x&y set([3, 4]) >>> x.intersec
相關文章
相關標籤/搜索