Python3 Data Structures Cheat Sheet: by Via
Python3 Data Structures Cheat Sheet: by Via
What are lists and tuples? Append "x" to a list/tuple? Intersection of two sets
How to initialize an empty list/tuple? Convert a list/tuple to tuple/list Difference of two sets
Lists: myList = [] List to Tuple: tuple(myList) Method 1: mySet1.difference(mySet2)
Tuples: myTuple = () Tuple to List: list(myTuple) Method 2: mySet1 - mySet2
Insert element in position x of a list/tuple? Union of two sets Delete element with key "k" from the dictionary
myDict.clear()