Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 270 Bytes

File metadata and controls

11 lines (7 loc) · 270 Bytes

Add An Item To Dictionary

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

Usage

dictionary["INDEX_KEY"] = "VALUE_HERE"

Source: W3Schools