set() 函數(shù)創(chuàng)建一個(gè)無序不重復(fù)元素集励饵,可進(jìn)行關(guān)系測試,刪除重復(fù)數(shù)據(jù)滑燃,還可以計(jì)算交集、差集颓鲜、并集等表窘。
返回值
返回新的集合對象。
x = set('runoob')
y = set('google')
print x, y
(set(['b', 'r', 'u', 'o', 'n']), set(['e', 'o', 'g', 'l'])) # 重復(fù)的被刪除
print x & y # 交集
set(['o'])
print x | y # 并集
set(['b', 'e', 'g', 'l', 'o', 'n', 'r', 'u'])
print x - y # 差集
set(['r', 'b', 'u', 'n'])
```