Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/python
- # Se importa el modulo 'random'
- import random
- # al ejecutarse el programa 'numero_secreto' va a tomar un valor
- # aleatorio entre 1 y 10.
- numero_secreto = random.randint(1, 10)
- contador = 1
- while True:
- # se pide que se ingrese un numero.
- adivinanza = int(input("Adivina el número secreto (entre 1 y 10): "))
- # Sentencia if dentro del while
- if adivinanza == numero_secreto:
- print("¡Adivinaste!")
- else:
- print("Intenta de nuevo.")
- if contador == 4:
- print("se termino el juego")
- break
- else:
- contador += 1
- print("fin del programa.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement