how to end for loop in python code example
Example 1: python get out of loop
while True:
print('I run!')
break
print('Not in loop!')
Example 2: python break for loop
#in Python, break statements can be used to break out of a loop
for x in range(5):
print(x * 2)
if x > 3:
break
Example 3: python while continue
## When the program execution reaches a continue statement,
## the program execution immediately jumps back to the start
## of the loop.
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 4: python break for
number = 0
for number in range(10):
if number == 5:
break # break here
print('Number is ' + str(number))
print('Out of loop')
Example 5: how to exit a loop in python
print("enter a number")
num=int(input())
for i in range(2,num+1):
if(num
print("smallest divisor is",i)
break
Example 6: 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
"""
#I hope it helps! -Andrew Ma
#make sure when you print bob don't indent or else
it will think it is part of the for loop! :)