Python Data Structure

Get Started. It's Free
or sign up with your email address
Python Data Structure by Mind Map: Python Data Structure

1. Frozen Sets

1.1. Immutable

1.2. Unordered

1.3. Unique Elements

1.4. Methods

1.4.1. Union/Intersection

1.4.2. Difference

1.4.3. issubset/issuperset

2. Strings

2.1. Immutable

2.2. Ordered

2.3. Methods

2.3.1. Upper/Lower

2.3.2. Split/Join

2.3.3. Strip

3. Lists

3.1. Mutable

3.2. Ordered

3.3. Methods

3.3.1. Insert/Reverse

3.3.2. Append/Extend

3.3.3. Sort/Reverse

4. Dictionaries

4.1. Mutable

4.2. Unordered

4.3. Methods

4.3.1. Keys/Values/Items

4.3.2. Get/Update

4.3.3. Pop/Clear

4.4. Key-Value Pairs

5. Tuples

5.1. Immutable

5.2. Ordered

5.3. Methods

5.3.1. Count

5.3.2. Index

6. Sets

6.1. Mutable

6.2. Unordered

6.3. Unique Elements

6.4. Methods

6.4.1. Add/Remove

6.4.2. Union/Intersection

6.4.3. Difference