ItSolutionStuff.com

Python Dictionary Delete Item by Key Example

By Hardik Savani • October 30, 2023
Python

Hi Friends,

This is a short guide on python dictionary remove item by key. We will look at an example of python dictionary delete item by key. Here you will learn python remove items from dictionary by key. We will look at an example of python dictionary remove item by index. Alright, let us dive into the details.

There are several ways to remove element by index from a dictionary in python. i will give you four examples using pop() and del in python.

So, without further ado, let's see simple examples:

Example 1: Python Dictionary Remove Element using pop()

main.py

user = {
  "ID": 1,
  "name": "Hardik Savani",
  "email": "hardik@gmail.com"
}
  
# Remove Item from dictionary
user.pop("email")
  
print(user)

Output:

{
 'ID': 1,
 'name': 'Hardik Savani'
}

Example 2: Python Dictionary Remove Element using del

main.py

user = {
  "ID": 1,
  "name": "Hardik Savani",
  "email": "hardik@gmail.com"
}
  
# Remove Item from dictionary
del user["email"]
  
print(user)

Output:

{
 'ID': 1,
 '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

How to Add a Key Value Pair to Dictionary in Python?

Read Now →

How to Add Element in Dictionary Python?

Read Now →

How to Add Item in Dictionary Python?

Read Now →

Python Openpyxl Read Excel File Example

Read Now →

Python Read Excel File with Multiple Sheets Example

Read Now →

Python Create JSON File from Dict Example

Read Now →

How to Add Multiple Elements to a List in Python?

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 Duplicate Values from List in Python?

Read Now →

How to Remove null Values from the List in Python?

Read Now →