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.

JiHun Choi
1,373 PointsWorks on the workspace but not on the challenge task
What else should I add to this to have it sys.exit() when the input is 'n' and print "Enjoy the show!" for any other response?
import sys
def start_movie():
start = input("Wanna start the movie?").lower()
if start != 'n':
print("Enjoy the show!")
else:
print("Bye!")
sys.exit()
1 Answer

Jason Anders
Treehouse Moderator 145,692 PointsHi JiHun,
The instruction did not say to create a method.
The rest of your code is correct. You just need to delete the line that is creating the method and adjust the indentation for the other lines (once the def startMovie()
line is deleted) and the code will pass.
Nice work! :)
Dave StSomeWhere
19,822 PointsDave StSomeWhere
19,822 PointsWhy did you define the start_movie() function - was that part of the challenge?