Tag: set

  • Python 101: Sets

    Python Sets https://www.w3schools.com/python/python_sets.asp In Python, a set is a collection of unique elements, and it is an unordered and unindexed collection of items. Set is one of 4 built-in data types in Python used to store collections of data, the other 3 are List, Tuple, and Dictionary, all with different…