Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import random
- numero = random.randint(1,11)
- intentos = 0
- jugando = True
- print("Bienvenido al juego, ¡adivina el número!")
- while(jugando):
- intentos += 1
- if (intentos<=5):
- eleccion = int(input("Dime un numero: "))
- if (eleccion == numero):
- print("Adivinaste, felicitaciones")
- jugando = False
- elif eleccion > numero:
- print("El numero es muy alto, este es tu intento número ",intentos)
- elif eleccion < numero:
- print("El numero es muy bajo, estas en tu intento número ",intentos)
- else:
- print("Has realizado todos tus intentos, gracias por jugar.")
- jugando = False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement