You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def adivina_el_numero():
print("¡Bienvenido al juego de Adivina el Número!")
numero_secreto = random.randint(1, 100) # Número aleatorio entre 1 y 100
intentos = 0
while True:
intento = input("Adivina un número entre 1 y 100: ")
try:
intento = int(intento)
except ValueError:
print("Por favor, ingresa un número válido.")
continue
intentos += 1
if intento < numero_secreto:
print("El número es mayor.")
elif intento > numero_secreto:
print("El número es menor.")
else:
print(f"¡Felicidades! Adivinaste el número en {intentos} intentos.")
break
Ejecutar el juego
adivina_el_numero()
The text was updated successfully, but these errors were encountered:
import random
def adivina_el_numero():
print("¡Bienvenido al juego de Adivina el Número!")
numero_secreto = random.randint(1, 100) # Número aleatorio entre 1 y 100
intentos = 0
Ejecutar el juego
adivina_el_numero()
The text was updated successfully, but these errors were encountered: