I tell python
Game=input
and then
if Game=="1":
print("Guess The Number Selected")
and then again
if Game=="2":
print("Hangman Selected")
But then it ends up printing both!
Also I do
NumberChoice=input
NumberGuess=input
Then I give it
if NumberGuess=="NumberChoice":
print("Congratulations! You Win.")
else:
print("Incorrect! Try Again.")
Instead of doing both it ends up doing
Incorrect! Try Again.
It does that twice even when I input the correct number