Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Dennis Moriarity
Courses Plus Student 940 PointsError says "Didn't get and exit from "start_movie"
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.
I don't have start_movie anywhere in my script.
import sys
start = input("Do you want to start the movie Y/n?")
if start != "n" or start != "N":
print("Enjoy the show!")
else:
sys.exit()
Krishna Pratap Chouhan
15,191 PointsKrishna Pratap Chouhan
15,191 Pointshttps://teamtreehouse.com/community/stuck-in-the-question
And by start_movie, he simply means the firedoor.py script.