[pyar] [Programacion] input function

Claudio Freire klaussfreire en gmail.com
Mie Mar 7 13:13:30 ART 2012


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()



More information about the pyar mailing list