# How does Memory work in Python? Dict memory manipulation
###### tags: `By_Ivan_note`
:::info
In short, Python is a garbage-collected language.</br> If a value isn't "reachable" from your code anymore, it will eventually get deleted.
> https://stackoverflow.com/questions/21053380/what-does-del-do-exactly
:::