> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/python/add-an-item-to-dictionary.md).

# Add An Item To Dictionary

We can add an item to dictionary by assigning a new index key and value to it.

## Usage

```python
dictionary["INDEX_KEY"] = "VALUE_HERE"
```

***Source:*** [***W3Schools***](https://www.w3schools.com/python/gloss_python_dictionary_add_item.asp)
