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

What am I doing wrong in this code?

import sys

option = input("Play movie?") if option == "n" or "N": sys.exit()

else: print("Enjoy the show!")

firedoor.py
import sys

option = input("Play movie?")
if option == "n" or "N":
  sys.exit()

  else:
    print("Enjoy the show!")

1 Answer

Steven Parker
Steven Parker
229,783 Points

Looks like you have a couple of issues:

  • Indentation is critically important in Python. For example, an else must line up with the corresponding if
  • When testing for more than one condition, you must use logical operators to combine individual tests
  • You can also use a case conversion function if you want to make a string comparison case-insensitive

I'll bet you can get it now, but if not... <button' onclick='$("#spoiler").slideDown("slow");$(this).remove()'>Press to Reveal Spoiler</button> <div id='spoiler' style='display:none'>


:warning: SPOILER ALERT


import sys

option = input("Play movie?").lower()
if option == "n":
  sys.exit()
else:
  print("Enjoy the show!")

</div>

THANKSS!

Grigorij Schleifer
Grigorij Schleifer
10,365 Points

This SPOILER effect is AMAZING !!! Steven could you share us how to markdown this please???