[Solved] Checking user input python [closed]
You convert the user’s input to a string (str(input(‘What …’))) but compare it to integers in inputCheck. Since there is no else path in inputCheck, nothing happens when you enter a “valid” choice. Also, if you’re using Python 2, using input is not what you want, raw_input is the way to go (see, for example … Read more