官术网_书友最值得收藏!

Sets

A set is an unordered collection of elements with no duplicates. The basic use of a set is to check membership testing and eliminate duplicate entries. These set objects support mathematical operations, such as union, intersection, difference, and symmetric difference. We can create a set using curly braces or the set() function. If you want create an empty set, then use set(), not {}.

Here is a brief demonstration:

>>> fruits = {'Mango', 'Apple', 'Mango', 'Watermelon', 'Apple', 'Orange'}
>>> print (fruits)
{'Orange', 'Mango', 'Apple', 'Watermelon'}
>>> 'Orange' in fruits
True
>>> 'Onion' in fruits
False
>>>
>>> a = set('abracadabra')
>>> b = set('alacazam')
>>> a
{'d', 'c', 'r', 'b', 'a'}
>>> a - b
{'r', 'd', 'b'}
>>> a | b
{'d', 'c', 'r', 'b', 'm', 'a', 'z', 'l'}
>>> a & b
{'a', 'c'}
>>> a ^ b
{'r', 'd', 'b', 'm', 'z', 'l'}

Set comprehensions are also supported in Python. Refer to the following code:

>>> a = {x for x in 'abracadabra' if x not in 'abc'}
>>> a
{'r', 'd'}
主站蜘蛛池模板: 南部县| 泰顺县| 栾城县| 屏东市| 太保市| 莫力| 万州区| 拜城县| 六盘水市| 天柱县| 筠连县| 永州市| 浦东新区| 嘉义县| 开封县| 连南| 讷河市| 丹江口市| 开原市| 喀喇沁旗| 万盛区| 交城县| 林芝县| 视频| 丰城市| 武功县| 家居| 张家口市| 松桃| 宽甸| 乌什县| 聂拉木县| 贡觉县| 南岸区| 淮安市| 九江市| 汝州市| 娄底市| 兰考县| 靖江市| 京山县|