else statement for loop python code example
Example 1: python for else
list = [99, 98, 97, 96, 95, 94]
for number in list:
if number == 2:
print("There is a 2 in the list")
break
else:
print("There are no 2's in the list")
# The else statement is only reached if the for loop
# has run all the way through without breaking
Example 2: if then else python
a = 200
b = 33
if b > a:
print("b is greater than a")
elif a == b:
print("a and b are equal")
else:
print("a is greater than b")