Answers for "try continue in python"

7

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
Posted by: Guest on March-21-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