exit in python
import sys
msg = "bye bye"
sys.exit(msg)
# you can use it with out a msg
                                
                            exit in python
import sys
msg = "bye bye"
sys.exit(msg)
# you can use it with out a msg
                                
                            continue statement python
import numpy as np
values=np.arange(0,10)
for value in values:
  if value==3:
    continue
  elif value==8:
    print('Eight value')
  elif value==9:
    break
                                
                            python exit for loop
# python 3
for x in range(1, 10):
    print(x)
    if x == 4:
        break
# prints 1 to 4
                                
                            how to exit a loop in python
print("enter a number")
num=int(input())
for i in range(2,num+1):
    if(num%i==0):
        print("smallest divisor is",i)
        break
                                
                            how to exit a loop in python programix
for letter in 'Python':     # First Example
   if letter == 'h':
      break
   print 'Current Letter :', letter
                                
                            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