No matter my input it still picks same option.
print ('Welcome to Hangman!') print ('Guess 10 letters!') inp = False if inp == False: inp = input() if inp == 'S' or 's': print ('Letter correct.\ Word: S___ _____.') inp = input() if inp == 'o' or 'O': #No matter what i choose it still picks choice 'o' print ('Letter correct.\ Word: So_o _____.') elif inp == 'l' or 'L': print ('Letter correct.\ Word: S_l_ L____.') elif inp == 'e' or 'E': print ('Letter correct.\ Word: S___ _e___.') elif inp == 'a' or 'A': print ('Letter correct.\ Word: S___ __a__.') elif inp == 'r' or 'R': print ('Letter correct.\ Word: S___ ___r_.') elif inp == 'n' or 'N': print ('Letter correct.\ Word: S___ ____n.') else: print ('Wrong.\ -----\ | |\ |\ |\ |\ |\ |\ |\ |\ --------')