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

Works 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?

firedoor.py
import sys
def start_movie():
    start = input("Wanna start the movie?").lower()
    if start != 'n':
        print("Enjoy the show!")
    else:
        print("Bye!")
        sys.exit()
Dave StSomeWhere
Dave StSomeWhere
19,870 Points

Why did you define the start_movie() function - was that part of the challenge?

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hi 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! :) :dizzy: