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 trialDaffa Alif Pratama
2,316 PointsWhat 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!")
import sys
option = input("Play movie?")
if option == "n" or "N":
sys.exit()
else:
print("Enjoy the show!")
1 Answer
Steven Parker
231,236 PointsLooks 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'>
SPOILER ALERT
import sys
option = input("Play movie?").lower()
if option == "n":
sys.exit()
else:
print("Enjoy the show!")
</div>
Daffa Alif Pratama
2,316 PointsDaffa Alif Pratama
2,316 PointsTHANKSS!
Grigorij Schleifer
10,365 PointsGrigorij Schleifer
10,365 PointsThis SPOILER effect is AMAZING !!! Steven could you share us how to markdown this please???