5. Repeticiones¶

xxxxxxxxxx
import time
print('¡Bienvenido!')
chute = 0
while chute != 42:
g = input('Ingrese un numero: ')
chute = int(g)
if chute == 42:
print('¡Ganaste!')
else:
if chute > 42:
print('Alto')
else:
print('Bajo')
time.sleep(1)
print('Fin del juego!')
Activity: 5.1 ActiveCode (ac_l30_5)

5.1. A los usuarios todavía no les gusta¶

You have attempted 1 of 2 activities on this page