i = raw_input("Type a number = ") try: i = float(i) except ValueError: print("Illegal")
Jump To Top of Thread