ds_algo
This repository contains notes related to data structures and algorithms using python
Common Python Usage Functions
- Remove a key from dict
# It also returns the removed value
removed_value = test_dict.pop('Mani')
This repository contains notes related to data structures and algorithms using python
Python
This repository contains notes related to data structures and algorithms using python
# It also returns the removed value
removed_value = test_dict.pop('Mani')