In exception handling , which of the following statements are used in python? * try…catch try...except def function 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")