[pyar] [Programacion] input function

Ricardo Araoz ricaraoz en gmail.com
Mar Mar 6 20:27:11 ART 2012


El 06/03/12 11:02, Diva Satanica escribió:
> Otra preguntonta; me conviene usar tanto como para numbers y strings
> raw_input o por ejemplo para numbers usar input?
>
> Porque si hago los 2 ejemplos siguientes:
>
> *Con input()*
> *
> *
>
>     *
>
>         >>> string_value = input('Cuantas horas trabajas? ')
>
>         Cuantas horas trabajas? 24
>
>         >>> print string_value
>
>         24
>
>     *
>
>
> *Con raw_input()*
> *
> *
>
>     *
>
>         >>> string_value = raw_input('Cuantas horas trabaja? ')
>
>         Cuantas horas trabaja? 34
>
>         >>> print (string_value)
>
>         34
>
>     *
>
>
>  O sea o uso uno o uso el otro, o los 2?
>

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



------------ próxima parte ------------
Se ha borrado un adjunto en formato HTML...
URL: <http://listas.python.org.ar/pipermail/pyar/attachments/20120306/d151d59d/attachment.html>


More information about the pyar mailing list