- Mastering Python Scripting for System Administrators
- Ganesh Sanjiv Naik
- 175字
- 2021-07-02 14:00:25
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'}
推薦閱讀
- Mastering Entity Framework Core 2.0
- 自制編譯器
- Photoshop智能手機APP UI設計之道
- Python:Master the Art of Design Patterns
- KnockoutJS Starter
- 深入RabbitMQ
- C#開發案例精粹
- UI設計全書(全彩)
- Illustrator CS6設計與應用任務教程
- Troubleshooting Citrix XenApp?
- SignalR:Real-time Application Development(Second Edition)
- Building Business Websites with Squarespace 7(Second Edition)
- 零基礎學C++(升級版)
- 微前端設計與實現
- 軟件測試技術