try except print error and line code example
Example: how to print error in try except python
try:
# some code
except Exception as e:
print("ERROR : "+str(e))
try:
# some code
except Exception as e:
print("ERROR : "+str(e))