how to end for loop python code example
Example 1: python while continue
while True:
print('Who are you?')
name = input()
if name != 'Joe':
continue
print('Hello, Joe. What is the password? (It is a fish.)')
password = input()
if password == 'swordfish':
break
print('Access granted.')
Example 2: python break for
number = 0
for number in range(10):
if number == 5:
break
print('Number is ' + str(number))
print('Out of loop')
Example 3: hwo to end a for loop [ython
for x in range (0, 20 + 1, 5):
print(x)
if x == 20: break
print('bob')
"""
output:
0
5
10
15
20
bob
"""
it will think it is part of the for loop! :)
Example 4: how to end a loop in python
for x in (1, 10, 1):
break
Example 5: break function python
if( x > 3):
print('X is greater than 3')
else:
break