Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Verificar si es par o impar.
- def parimpar (numero):
- resultadoparimpar = numero % 2;
- if resultadoparimpar != 0:
- resultado = "IMPAR";
- else:
- resultado = "PAR";
- return resultado;
- print("HOLA! BIENVENIDO AL CONSULTOR DE PARES E IMPARES.");
- condicion = True;
- numero = 0;
- while condicion == True:
- if int(numero) > 1000 or int(numero) < 1:
- numero = input("En que número estas pensando entre 1 y 1000?: ");
- else:
- condicion = False;
- print("El numero " + numero + " es: " + parimpar(int(numero)));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement