If you have a list in Python and you want to search to see if a particular element is present in the list, you can make use of the one of the following three ways,
1. Using the "in" and "not in" operator
Example:list_of_cities = ["NYC", "Tokyo", "Chicago", "Austin", "London"]
if "London" in list_of_cities:
print(f"London is the list {list_of_cities}")
if "Mumbai" not in list_of_cities:
print(f"Mumbai is not the list {list_of_cities}")
Output:
London is the list ['NYC', 'Tokyo', 'Chicago', 'Austin', 'London']
Mumbai is not the list ['NYC', 'Tokyo', 'Chicago', 'Austin', 'London']
2. Using the index() method
Example:my_list = ["Apple", "Mango", "Banana", "Grapes"]
try:
index = my_list.index("Mango")
print("Mango is at index", index)
except ValueError:
print("Mango is not in the list")
Mango is at index 1
Its better to handle ValueError as if the element you are looking for is not found you get this error.
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-42-3b37ee759fe2> in <cell line: 3>()
1 my_list = ["Apple", "Mango", "Banana", "Grapes"]
2
----> 3 index = my_list.index("Orange")
4 print("Mango is at index", index)
ValueError: 'Orange' is not in list
3. Using the count() method
Example:my_list = [24,21,12,45,24,12,45,23]
if my_list.count(10) > 0:
print("10 is found in my_list")
else:
print("10 is not found in my_list")
10 is not found in my_list



HashTags: #searchAListPython #pythonFindInList #listSearchPython #pythonFindElementInList #pythonFindItemInList
References:
- https://docs.python.org/3/library/array.html?highlight=index#array.array.index- https://docs.python.org/3/library/array.html?highlight=index#array.array.count
Have Questions? Post them here!
- tkinter - Hello World! Program
- How to install Python Specific version (3.8, 3.9 or 3.10) using Brew
- How to install SpaCy (NLP Library) on Mac
- Python matplotlib segmentation fault: 11 macOS Big Sur
- How to uninstall pip Python packages
- 3 Ways to find if element is present in a List in Python
- How to Convert Python String to DateTime Object
- Python f-strings Formatted String Literals Syntax and Examples
- Where does brew install python in macOS
- Take input argument from command line in Python Programming
- Advanced print() Function Tutorial and Techniques for Python Developers
- How to add borders to tkinter label text
- Whats new in Python 3.10 Pre-release
- Float built-in function in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- How to check if Key Exists in Python Dictionary?
- Read a file line by line in Python Program
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- What is the Max and Minimum Value of int type in Python?
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- Fix: TypeError: can only concatenate str (not int) to str in Python
- How to take user input from the console in a Python program
- [Fix] TypeError: str object is not callable in Python
- 3 Python program to add two numbers
- How to delete a file using Python code example
- Get-ADUser PowerShell - Get AD user details using email address - SharePoint
- [Java] Error: Unmappable character for encoding UTF-8. Save could not be completed. - Java
- Fetch as Google Crawl Error or Redirected Status - Google
- Backup your Mac before you update to macOS Ventura using Time Machine - MacOS
- Create Bootstrap carousel slider with Text - Bootstrap
- Enable Spellcheck in eclipse workspace - Eclipse
- How to identify installed Java (JDK) Version on macOS - MacOS
- Steps of working with Stored Procedures using JDBCTemplate Spring Boot - Java