Data Structures Flashcards
Learn about data structures in Python
1
Q
Built-in data structures?
A
- List
- Tuple
- Dictionary
- Set
2
Q
Mutable built-in data structures?
A
- List
- Dictionary
- Set
3
Q
Are classes mutable?
A
Yes (default)
4
Q
What is a mutable object?
A
Object that can change its state or contents
5
Q
Classes in collections module?
A
- namedtuple
- deque
- Counter
- OrderedDict
- defaultdict
6
Q
deque constructor
A
deque([iterable[, maxlen]])
7
Q
Create tuple with new item on end
A
tup + (item, )
*tup, item