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) Logic in Python Containment

Ashley DSouza
Ashley DSouza
997 Points

in 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
Peter Lawless
24,404 Points

You 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
peter Bowden
369 Points

You are correct that will work :)