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 trialNigel Chia
909 Pointsexiting
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.
i dont understand why mine isnt working
import sys
while True:
answer= input('movie?: y/n').lower()
if answer!='n':
print('enjoy the show')
break
else:
sys.exit()
1 Answer
Niko Klanecek
3,152 PointsYou want to test for both N
and n
so you should do answer.lower()
, also you should remove the break
statement since that is where the function would stop executing anyway.
Nigel Chia
909 PointsNigel Chia
909 Pointsahhh i forgot about the answer.lower() but now i've got [Bummer! Exception: EOF when reading a line]
Nigel Chia
909 PointsNigel Chia
909 Pointsi've got it, the while = True was unnecessary