ItSolutionStuff.com

How to Add Element in Dictionary Python?

By Hardik Savani • October 30, 2023
Python

Hey,

In this example, you will learn how to add element in dictionary python. I would like to show you python dictionary add element. you can see python dictionary add element if not exists. In this article, we will implement a how to add new element in dictionary python.

There are several ways to add a new element to the 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...

Tags: Python
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Python Create JSON File from List Example

Read Now →

How to Check If a List is Empty or Not in Python?

Read Now →

Python List Print All Elements Except Last Example

Read Now →

How to Get Min Value from Python List?

Read Now →

How to Convert List to Capitalize First Letter in Python?

Read Now →

How to Get Max Value from Python List?

Read Now →

How to Convert List to Uppercase in Python?

Read Now →

Python Convert List into String with Commas Example

Read Now →

How to Convert List into String in Python?

Read Now →

How to Convert String into List in Python?

Read Now →

How to Remove null Values from the List in Python?

Read Now →

Python Remove Empty String from List Example

Read Now →

How to Get First Element of List in Python?

Read Now →