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 trialmamadou diene
Python Web Development Techdegree Student 1,971 PointsUse input() to ask the user if they want to start the movie. If they answer anything other than "n" or "N", print "Enjo
I can't find where i am going wrong
import sys
begin = input ("do you want to start the movie? y/n ")
if begin != "n" or "N":
print("Enjoy the show!")
else:
sys.exit()
2 Answers
Steve Hunter
57,712 PointsHi there,
You need to do the test twice, so test begin != 'n'
then begin != 'N'
. Plus, you don't want to use or
you want the input to be neither 'N' and not 'n' too. Try and
.
Steve.
mamadou diene
Python Web Development Techdegree Student 1,971 PointsThank again.