import random
user = int(input("Введите число от 1 до 100: "))
pc = 0
tries = 0
won = False
while not winned:
print("Итерация №", tries)
pc = random.randint(1, 100)
tries += 1
if tries == 101:
break
won = pc == user
if won:
print("Компьютер победил на следующей итерации: ", tries)
print("Проверка результата компьютера.", "Вы ввели: ", user, "Компьютер нашел: ", pc)
else:
print('Компютер не нашел')
.menu-item {
position: relative;
display: inline-block;
overflow: hidden;
}
.menu-item:before {
transition: .5s all;
display: block;
content: "";
width: 100%;
height: 2px;
background-color: black;
position: absolute;
top: 50%;
left: -100%;
z-index: 10;
}
.menu-item:hover:before {
left: 100%;
}