try except lists code example
Example: try catch in python
try:
print("try to run this block")
except:
print("run this bock if there was error in earlier block")
try:
print("try to run this block")
except:
print("run this bock if there was error in earlier block")