how to handle exception in python without try and except is used code example
Example: python try without except
try:
print('try to print this')
except:
pass #do nothing
try:
print('try to print this')
except:
pass #do nothing