Guess_num.py 232 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 import random answer = random.randint(1,100) n = int(input("Please input a number(1-100):")) while n!=answer: if n>answer: n = int(input("More:")) elif n<answer: n = int(input("Less:")) print("You win")