Python Program to find an element in the list
In this program, you will learn how to find an element in the list in Python.
data =[22, 33, 44, 55]
Example: How to find an element in the list in Python
k = int(input("Enter how many number:"))
data = []
print("Enter numbers:", end="")
for i in range(0, k):
num = int(input())
data.append(num)
num = int(input("Enter a element for search:"))
flag = 0
for value in data:
if num == value:
flag = 1
break
if flag == 1:
print("Element found in the list:", num)
else:
print("Element not found in the list:", num)
Output:
Enter how many number:4
Enter numbers:10
20
30
40
Enter a element for search:30
Element found in the list: 30