Answers for "python try finally without except"

38

try except else finally python

try:
       # Some Code.... 
except:
       # optional block
       # Handling of exception (if required)
else:
       # execute if no exception
finally:
      # Some code .....(always executed)
Posted by: Guest on June-26-2021
2

python try without except

try:
    print('try to print this')
except:
    pass #do nothing
Posted by: Guest on August-15-2020

Python Answers by Framework

Browse Popular Code Answers by Language