Gustobg
0
Q:

python break

#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
7
## 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.')
4
while True:
  print('I run!')
  break
print('Not in loop!')
8
>>> for num in range(2, 10):
...     if num % 2 == 0:
...         print("Found an even number", num)
...         continue
...     print("Found a number", num)
Found an even number 2
Found a number 3
Found an even number 4
Found a number 5
Found an even number 6
Found a number 7
Found an even number 8
Found a number 9
3
number = 0

for number in range(10):
    if number == 5:
        break    # break here

    print('Number is ' + str(number))

print('Out of loop')
4
nums = [6,8,0,5,3]
product = 1

for num in nums:
  if num == 0:
    product = 0
    break # stops the for loop
  product *= num

print(product)
5
# Use of break statement inside the loop

for val in "string":
    if val == "i":
        break
    print(val)

print("The end")
---------------------------------------------------------------------------
s
t
r
The end
1
number = 0

for number in range(10):
    if number == 5:
        break    # break here

    print('Number is ' + str(number))

print('Out of loop')

4
## When 'break' is used in a while loop, it instantly leaves the loop
while True:
    print('Please type your name.')
    name = input()
    if name == 'your name':
        break
print('Thank you!')
4
#the loop
for x in (1, 10, 1):
  #type break to end loop before loop stops
  break
0
x = 0
while True:
    x += 1
    if x == 10:
        break
1

New to Communities?

Join the community