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 trialAshley DSouza
997 Pointsin syntax error
try:
user_feedback = input("H, L or C > ..")
except:
if user_feedback not in ["h","l","c","H","L","C"]
print("Please type h, l or c only")
else:
continue
#objective is to tell the user in case they type anything other than the 3 letters...
SyntaxError: invalid syntax
1 Answer
Peter Lawless
24,404 PointsYou need a ':' to conclude your 'if' statement. Also, the 'continue' is indented too far. It should only be indented as far as the 'if' statement above. Let me know if this works.
peter Bowden
369 Pointspeter Bowden
369 PointsYou are correct that will work :)