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 trialDennis 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,203 PointsKrishna Pratap Chouhan
15,203 Pointshttps://teamtreehouse.com/community/stuck-in-the-question
And by start_movie, he simply means the firedoor.py script.