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.

Gerard Nwazk
Courses Plus Student 2,833 PointsAh 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?
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
19,274 PointsHiya 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()

Gerard Nwazk
Courses Plus Student 2,833 Pointsi knew it!... thanks again brotherly...