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 trialIzaskun Lazcano
Python Web Development Techdegree Student 739 PointsHello! Anyone can help me with this challenge? I can't find the error. Thank you
Can someone tell me where the mistake is? Here is the challenge task: Use input() to ask the user if they want to start the movie. If they answer anything other than "n" or "N", print "Enjoy the show!". Otherwise, call sys.exit(). You'll need to import the sys library.
import sys
while True:
respuesta = input("Do you want to start the movie? (y/n): ".lower())
if respuesta != "n":
print("Enjoy the show!")
else:
sys.exit()
2 Answers
Izaskun Lazcano
Python Web Development Techdegree Student 739 PointsThank you, but then it seems to be some more mistakes. It is not correct yet.
Sashi Shah
2,528 PointsYou need to break out of the while loop... add the break to exit the loop if the user types anything other than "n" or "N"
Suraj Shah
1,055 PointsSuraj Shah
1,055 Pointsthere should be no bracket around lower.
i.e. it should read:
respuesta = input("Do you want to start the movie? (y/n): ").lower()