I require assistance with a bit of code, I'm practicing with something basic, I'm starting to understand concepts now but I still need much help, I've started with a random number generator and I'd like for it to allow you to guess again until correct.
import random
hidden = random.randrange(1, 201)
print(hidden)
guess = int(input("Please enter your guess:"))
if guess == hidden:
print("Hit!")
elif guess < hidden:
print("Your guess is too low")
else:
print("Your guess is too high")
Thanks, R