print error on unexpected input in python code example
Example 1: exception pyton print
except Exception as e: print(e)
Example 2: how to fix valueerror in python
#Instead of
a = int(input("What is x?"))
#Put
try:
a = int(input("What is x?"))
except ValueError:
print ("Insert ValueError message here")
#This way your program won't crash