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 trial

Python Python Basics (2015) Letter Game App Exiting

Nigel Chia
Nigel Chia
909 Points

exiting

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

firedoor.py
import sys
while True:
    answer= input('movie?: y/n').lower()
    if answer!='n':
        print('enjoy the show')
        break
    else:
        sys.exit()

1 Answer

You 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
Nigel Chia
909 Points

ahhh i forgot about the answer.lower() but now i've got [Bummer! Exception: EOF when reading a line]

Nigel Chia
Nigel Chia
909 Points

i've got it, the while = True was unnecessary