2012/3/7 Angel Java Lopez <ajlopez2000 en gmail.com>: > bool int.TryParse(string s, out ref i) > > justamente para no ir a tener que tratar excepciones > > Se podria hacer algo asi en Python? def tryParse(x): try: return int(x) except ValueError: return None x = tryParse(raw_input(...)) if x is None: putear()