<code lang="python">
num = 5
start = True
while start:
guess = int(input("Num:"))
if guess == num:
print("yes")
Yes = 1
guess2 = int(input("want to repeat?(1 = yes/ 0 = no):"))
if guess2 == Yes:
start = True
else:
start = False
elif guess < num:
print("higer!")
else:
print("lower!!!")
else:
print("Good buy my friend :>")
</code>
все заработало, но я не понял почему. Я первьІй день учу питон