0
Почему не работает
if diap == '0-2': num = input("Введи число: ") rnd = random.randint(0, 2) print(rnd) if num == rnd: print("Верно! Бери скидку 5 руб!") else: print("Не не!")
3 Respuestas
+ 1
You need to convert the string variable num to a numeric value, using int() function.
0
Hello, it's python, I dont know how to make this.