Error Getting User input with Bash

Final Project | Codecademy
I’m working on my python terminal game, and I’ve having trouble taking user input. The input() function works fine, and the prompt appears as desired. I add the desired input and hit enter, but nothing happens. Bash moves to a new line, but the code doesn’t continue running. It seems like python doesn’t realize that I’m finished with my input. This seems like a simple item so I don’t understand what I’ve done wrong.

There could be a few different reasons why you are experiencing this issue. Here are a few things to check:

  1. Make sure you are not using the input() function inside of a loop that is waiting for another input. If this is the case, the loop will never end and the program will appear to be stuck.
  2. Check if you have any typos or syntax errors in your code that may be causing the input function to fail.
  3. Try using a different method for taking user input, such as the raw_input() function in Python 2.
  4. Check if there are any issues with the terminal or command prompt you are using. Try running your code in a different terminal or command prompt to see if the issue persists.

If none of these solutions work, please provide more details about your code and the specific error message you are receiving, so I can help you further.