Tag: set

  • Python 101: Python data structures such as `list`, `dict`, `set`, and others

    Python data structures such as list, dict, set, and others. 1. List (列表) 哈希表中的数组类比 (Array Analogy): A list in Python is similar to the array component in the hash table structure. Like an array, Python’s list provides indexed access to elements. List Internal Structure: Python’s list is implemented as a…

  • 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…