try: v = int( raw_input("Enter a value: ")) print "We got some valid input!" x = 100 / v except (ValueError, KeyboardInterrupt): print "Invalid input, please enter a value" except ZeroDivisionError: print "You can't divide by ZERO!"
Related Scripts with Example Source Code in same category :