How to Add Item in Dictionary Python?
Hey Artisan,
This post is focused on how to add item in dictionary python. Here you will learn python dictionary add item. you can understand a concept of python dictionary add item if not exists. step by step explain how to add new item in dictionary python.
There are several ways to add a new item to a dictionary in python. I will give you simple two examples using adding index and value and update() method. so let's see the below examples:
You can use these examples with python3 (Python 3) version.
Example 1:
main.py
user = { "ID": 1, "name": "Hardik Savani", "email": "hardik@gmail.com" } # Adding new "bithdate" to dictionary user["bithdate"] = "1994/07/01" print(user)
Output:
{ 'ID': 1, 'bithdate': '1994/07/01', 'email': 'hardik@gmail.com', 'name': 'Hardik Savani' }
Example 2:
main.py
user = { "ID": 1, "name": "Hardik Savani", "email": "hardik@gmail.com" } # Adding new "bithdate" to dictionary user.update({"bithdate": "1994/07/01"}) print(user)
Output:
{ 'ID': 1, 'bithdate': '1994/07/01', 'email': 'hardik@gmail.com', 'name': 'Hardik Savani' }
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Check If a List is Empty or Not in Python?
- Python Read Text File into List Example
- How to Count Number of Elements in a List in Python?
- How to Find Average of List in Python?
- How to Get Min Value from Python List?
- How to Convert List to Capitalize First Letter in Python?
- How to Get Max Value from Python List?
- Python Convert List into String with Commas Example
- Python Split String into List of Characters Example
- How to Convert String into List in Python?
- How to Remove Duplicate Values from List in Python?
- How to Get Unique Elements from List in Python?