I’d be happy to help but this doesn’t look like Python. An IF statement ends with a colon and the following statement is indented like this:
print("I sense your energy.")
mood = input ("Type a number from 1-3") # Put the user input into a variable called "mood".
if mood == 1:
print("Mood is 1")
Indentation is critical for Python to work.
Also, do not provide screenshots of your code, just copy and paste your code into a code fence. Like my code above. This is so we can copy your code and fix it so you can learn from that.
Help us help you. Read this link first and learn how to format code so we can help you better. Do not use a screen shot of your code as some of us will copy and paste the code to get it to work for you, so you can learn from this. About the Python Help category You will get more help this way.
There are a number of free good tutorials on Python on Youtube. I like the ones by Indently. Have you done them yet? Search here: https://www.youtube.com/results?search_query=learn+python+tutorial+Indently Look for the tutorials that are more than 2 hours, those will have more info in them. Don’t skip parts, go through all parts.