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

Ah ah...? this code should be right, it ran fine on my python ide but not submitting here...

please what am i doing wrong in this code?

firedoor.py
import sys

start = input("Do you want to start the movie? Y/N: ").lower()
if start == 'n':
    sys.exit()
else:
    print("Enjoy the show!")

2 Answers

Ari Misha
Ari Misha
19,323 Points

Hiya Gee! You are very close. You just need to change the flow of your code as per instructions given in the challenge. Here is the reference code:

import sys

query = input("Would ya like to start the movie? ").lower()
if not query == 'n':
    print("Enjoy the show!")
else:
    sys.exit()

i knew it!... thanks again brotherly...