Home Program to search for a specific element in a list using for loop byIndian -9:51 PM 0 #list is declarednum = [1,2,3,4,5,6,7]#using for loop to run through the listfor x in num: if x == 3: print(x) Facebook Twitter