Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics (2015) Letter Game App Exiting

Hello! Anyone can help me with this challenge? I can't find the error. Thank you

Can someone tell me where the mistake is? Here is the challenge task: Use input() to ask the user if they want to start the movie. If they answer anything other than "n" or "N", print "Enjoy the show!". Otherwise, call sys.exit(). You'll need to import the sys library.

firedoor.py
import sys
while True:
    respuesta = input("Do you want to start the movie? (y/n): ".lower())
    if respuesta != "n":
        print("Enjoy the show!")
    else:
        sys.exit()   
Suraj Shah
Suraj Shah
1,055 Points

there should be no bracket around lower.

i.e. it should read:

respuesta = input("Do you want to start the movie? (y/n): ").lower()

2 Answers

Thank you, but then it seems to be some more mistakes. It is not correct yet.

You need to break out of the while loop... add the break to exit the loop if the user types anything other than "n" or "N"