Write a Python code to demonstrate the use of Raise and finally block in exception handling 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")