Answers for "continue for loop after exception python"

9

python catch error and continue

try:
   # Code to test / execute
   print('Test')
except (SyntaxError, IndexError) as E:  # specific exceptions
   # Code in case of SyntaxError for example
   print('Synthax or index error !')
except :
   # Code for any other exception
   print('Other error !')
else:
   # Code if no exception caught
   print('No error')
finally:
   # Code executed after try block (success) or any exception (ie everytime)
   print('Done')

# This code is out of try / catch bloc
print('Anything else')
Posted by: Guest on April-19-2021
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 )
Posted by: Guest on April-06-2020
1

python try except continue loop

try:
  #code
except:
  #pass to continue loop or error handling
  pass
else:
  #code
  pass
finally:
  pass
Posted by: Guest on May-23-2020

Python Answers by Framework

Browse Popular Code Answers by Language