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

Zack Parr
Zack Parr
4,091 Points

Why didn't the question tell me to make a variable named start_movie?

I was having a hard time with this challenge for a little bit, I didn't know if I needed to create a function, a while True loop. I kept getting an error named "Not the expected response from 'start_movie'." Eventually I got it right by looking at a similar script in the forum, just about the only thing I needed to change was the name of the input variable from start to start_movie. I'm just asking why didn't they put that in the instruction? That could've saved me some trouble.

agreed

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Can you post the code using "start" that didn't pass the challenge? Maybe there were other issues.

This code passes using the variable start:

import sys

start = input("start the movie? ")
if start.lower() != 'n':
    print("Enjoy the show!")
else:
    sys.exit()

This also works:

import sys

start = input("start the movie? ")
if start != 'n' and start != 'N':
    print("Enjoy the show!")
else:
    sys.exit()