python exit for loop
# python 3
for x in range(1, 10):
    print(x)
    if x == 4:
        break
# prints 1 to 4
                                
                            python exit for loop
# python 3
for x in range(1, 10):
    print(x)
    if x == 4:
        break
# prints 1 to 4
                                
                            python exit loop iteration
alphabet = ['a' , 'b' , 'c' , 'd' ]
for letter in alphabet:
  if letter == 'b' :
    continue
    #continues to next iteration
  print( letter )
for letter in alphabet:
  if letter == 'b' :
    break
    #terminates current loop
  print( letter )
for letter in alphabet:
  if letter == 'b' :
    pass
    #does nothing
  print( letter )
                                
                            python how to skip iteration
nums = [7,3,-1,8,-9]
positive_nums = []
for num in nums:
    if num < 0: #skips to the next iteration
        continue
    positive_nums.append(num)
        
print(positive_nums) # 7,3,8
                                
                            how to break a loop in python
x = 0
while True:
    x += 1
    if x == 10:
        break
                                
                            Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us