I'm making a guessing game where I guess words. Is it possible to make it without the random module? I got to here:
print("What`s your name?")
name = input()
print("Hello, %s! this is a guessing game." %name)
print("If you want to start hit ENTER, if not you can exit")
input()
print("Okay, so you want to continue! Nice lets start")
print("What animal lives in Africa and has a long neck")
animal = "giraffe"
while animal != "giraffe":
print("Wrong answer! Try again.")
Basically, I got to an infinitive loop and I don't know how to make people try again. Also for every person that asked "why don't you want to use the random module", well I'm trying to learn do I learn when I make it easier for myself? I need to solve problems and this is the problem I wanted to solve.