[pyar] [Programacion] input function

Ezequiel - ezequielchan en gmail.com
Mie Mar 7 08:29:00 ART 2012


El día 6 de marzo de 2012 20:27, Ricardo Araoz <ricaraoz en gmail.com> escribió:
>
> Untested :
>
> while True:
>     try:
>         x = int(raw_input('Cuantas horas trabaja?')
>         break
>     except ValueError:
>         print 'Ojo! Debe ingresar un número. Trate de nuevo...')
> print x +1
>

antes de usar un try podes usar x.isdigit()

while True:
    x = raw_input('Cuantas horas trabaja?: ')
    if x.isdigit():
        x = int(x)
        break


Saludos


-- 
Ezequiel Chan



More information about the pyar mailing list