Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/11/2012, 06:00
AlvaroG
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: while, while, while

Código Python:
Ver original
  1. gen = None
  2. while gen not in ("Mujer", "Hombre"):
  3.     gen = raw_input("sexo?")

la condición del while se puede cambiar por la forma equivalente
Código Python:
Ver original
  1. gen != "mujer" and gen != "hombre"

Si necesitas comparación sin importar mayúsculas o minúsculas, lo más sencillo es convertir la entrada:
Código Python:
Ver original
  1. gen.lower() not in ("mujer", "hombre")


Saludos.