Mega Code Archive

 
Categories / Python / Exception
 

Handling Exceptions

while True:      try:          x = int(raw_input("Please enter a number: "))          break      except ValueError:          print "Oops!  That was no valid number.  Try again..."