So I have to make a \"game\" on python were I think of a number and it tries to guess the number. I have to tell it if it\'s higher or lower than the number it guessed and conti
You can save the numbers it guessed in a list and then you check if a new guess is already in the list or not. initialise an empty list like so:
guessed=[]
and then you can append guesses made by your program into the list
guessed.append(guess)