- Dictionaries in Python are mutable and contain key-value pairs, with keys being unique and immutable.
- Common dictionary methods include keys(), values(), items(), get(), update(), pop(), popitem() etc.
- Dictionaries can be iterated over using for loops and sorted. Operations like merging, concatenation, checking presence of keys are also possible on dictionaries.