-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjuegoRandom.py
50 lines (37 loc) · 1.31 KB
/
juegoRandom.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import random
#toDoList
#pruebas de error
def randomGame():
intentos = 5
numero = random.randint(1,10)
print(numero)
print("bienvenido a adivina el numero!")
print("estoy pensando en un numero del 1 al 10")
print("Puedes adivinar cual es? Tienes {} intentos...".format(intentos))
while intentos>0:
try:
guess = int(input("Mi adivinanza es: "))
except ValueError:
print("Por favor introduce un número del 1 al 10")
else:
intentos -= 1
if guess == numero:
print("Felicitaciones, adivinaste el número!")
reintentar = input("Jugar nuevamente: si/no ")
if reintentar.lower() == "si":
randomGame()
else:
break
elif guess > numero:
print("oops, parece que te pasaste")
else:
print("oops, te has quedado corto!")
if intentos > 0:
print("Te quedan {} intentos de {}".format(intentos, "5"))
else:
print("Se te acabaron los intentos, el numero era {}".format(numero))
print("Gracias por jugar\n")
reintentar = input("Jugar nuevamente: si/no ")
if reintentar.lower() == "si":
randomGame()
randomGame()