I was making a small game and for some reason this function won't work.
while InstructionsNeeded != 'no' or InstructionsNeeded != 'yes':
print("please type yes or no")
InstructionsNeeded = input("Welcome to Dice Brawl. Do you need instructions:")
InstructionsNeeded = InstructionsNeeded.lower()
I offer the input before this in the code and it works perfectly fine. Also when I checked to see what the value was of InstructionsNeeded and it would read fine.