Python input correcct type and input but gives error with or without correct input
Python input correcct type and input but gives error with or without correct input Question: def choicesChecker(userchoice): if userchoice != ‘r’ or ‘p’ or ‘s’: print(‘error’) print(type(userInput)) else: print(‘correct input’) userInput = input("Pls input one of the following n r for rock, n s for siccors n p for pappern") choicesChecker(userInput) I am making a …