355 B
355 B
categories | tags | |||
---|---|---|---|---|
|
|
Dictionaries in Python
Dictionaries are basically the Python equivalent of objects in JS.
Dictionaries:
- Are ordered (in contrast to JS)
- Are mutable
- Are indexed by a key which references a value
- Can be increased/decreased in length by adding/removing new members.