for_else_and_while_else_statement

# for else and while else statements
search = [ 1, 2, 3, 4, 5, 6, 7 ]
target = 5
for element in search :
	if element == target :
		print('I found it! ' )
		break
else :
	print('I did not find it!')

i = 0
while i < len(search) :
	element = search[i]
	if element == target :
		print('I found it! ' )
		break
	i += 1
else:
	print('I did not find it! ' )
Impossible Impala