try: v = int( raw_input("Enter a value: ")) print "We got some valid input!" x = 100 / vexcept (ValueError, KeyboardInterrupt): print "Invalid input, please enter a value"except ZeroDivisionError: print "You can't divide by ZERO!"