I was trying to make "Guess The Number" project. I did all of "You Need To Guess Higher/Lower" things But when i run the code it tells me to guess higher/lower and finishes. it does not give me the chance to continue or guess again i need the code to keep running how can i do that enter code here (thanks for everyone who replied & answered )
import random
random.randint(0, 100)
random = random.randint(0, 100)
guess = float(input("Guess The Number"))
if guess > random + 50:
print("Too High")
elif guess > random + 25:
print("A little High")
elif guess > random + 10:
print("So Close")
elif guess + 50 < random:
print("Too Low")
elif guess + 25 < random:
print("A little low")
elif guess + 10 < random:
print("So Close")
elif guess == random:
print("Great Job")
else:
print("Guess Again!")