Python 学习笔记
### The difference between `del` and `.remove()`is:
1. `del` deletes a key and its value based on the _key_ you tell it to delete.
2. `.remove()` removes a key and its value based on the _value_ you tell it to delete.
Posted 5. June 2013.
2 min read.
Link