execute a function using try catch python code example
Example: try catch 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")