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 trialJiHun 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,860 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,870 PointsDave StSomeWhere
19,870 PointsWhy did you define the start_movie() function - was that part of the challenge?