eolas/Programming_Languages/Python/Syntax/Dictionaries_in_Python.md
2023-02-14 09:16:11 +00:00

355 B

categories tags
Programming Languages
python
data-structures

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.