class Dog(object): def __init__(self): self.kind = "Beagle" def start(self): while True: try: data = raw_input("MyInput> ") except KeyboardInterrupt: print("Interrupted!") d = Dog() d.start()