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 trialJusuf Kajtazović
668 PointsDid not get an exit ?
I know that this is a easy task and this is my first time asking for help but this time i really cant find my mistake !
import sys
start_movie = input("Press enter/return to start the movie or N for No ").lower
if start_movie != "n":
print("Enjoy the show!")
else:
sys.exit
2 Answers
Daniel Schmidt
9,780 Pointsimport sys
start_movie = input("Press enter/return to start the movie or N for No ").lower() # <-- .lower() not .lower
if start_movie != "n":
print("Enjoy the show!")
else:
sys.exit() # <-- .exit() not .exit
Aayush Mitra
24,904 PointsHi!
You have the right logic, you just need parenthesis:
import sys
start_movie = input("Press enter/return to start the movie or N for No ").lower() #I added parenthesis.
if start_movie != "n":
print("Enjoy the show!")
else:
sys.exit() #I added parenthesis.
Thanks! :)