ItSolutionStuff.com

How to Check If Element is Present in List Python?

By Hardik Savani โ€ข October 30, 2023
Python

Hello,

I am going to show you an example of how to check if element is present in list python. This post will give you a simple example of how to check if element is not present in list python. I would like to share with you how to find if an element is present in a list in python. Iรขโ‚ฌโ„ขm going to show you about python check if element in list exists. you will do the following things for python check if value in list exists.

If you want to check value exists or not in the python list then I will give you the following examples. we will use "in" with list for checking element exist or not.

Without any further ado, let's see the code examples below.

You can use these examples with python3 (Python 3) version.

Example 1:

main.py

# Created new List
myList=[ "Hardik", "Vimal", "Harshad" ]
  
# Key for check id exist or not
elem="Hardik"
  
# Checking elem exist or not in myList var
if elem in myList:
    print("Given element is exist in List.")
else:
    print("Given element is not exist in List.")

Output:

Given element is exist in List.

Example 2:

main.py

# Created new List
myList=[ 1, 2, 3, 4, 5, 6 ]
  
# Checking key exist or not in myList var
for i in myList:
    if(i == 3):
        print("Given element is exist in List.")

Output:

Given element is exist in List.

Example 3:

main.py

# Created new List
myList=[ 1, 2, 3, 4, 5, 6 ]
  
# Checking key exist or not in myList var
if (3 in myList):
    print("Given element is exist in List.")
else:
    print("Given element is not exist in List.")

Output:

Given element is exist in List.

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 Write CSV File from List Example

Read Now โ†’
โ˜…

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

Read Now โ†’
โ˜…

Python Read Text File into List Example

Read Now โ†’
โ˜…

Python Generate Text File from List Example

Read Now โ†’
โ˜…

How to Reverse List Elements in Python?

Read Now โ†’
โ˜…

Python List Add Element at Beginning Example

Read Now โ†’
โ˜…

How to Add Element at the End of List in Python?

Read Now โ†’
โ˜…

How to Add Element at Specific Index in Python List?

Read Now โ†’
โ˜…

How to Get Min Value from Python List?

Read Now โ†’
โ˜…

How to Convert List to Lowercase in Python?

Read Now โ†’
โ˜…

How to Remove Duplicate Values from List in Python?

Read Now โ†’
โ˜…

How to Get Unique Elements from List in Python?

Read Now โ†’