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 All Together Now Branch and Loop

William Morgan
PLUS
William Morgan
Courses Plus Student 803 Points

Can someone help me with this syntax error?

Code:

#If they want to proceed, 
if should_proceed.lower() == "y": 
    #Print out to the screen "SOLD!" to confirm purchase
    #TODO: Gather credit card information and process it
    print("SOLD!")

  File "masterticket.py", line 24 
    if should_proceed.lower() == "y":
                                                        ^
SyntaxError: invalid syntax
William Morgan
William Morgan
Courses Plus Student 803 Points

That's it, missed the lose parenthesis prior line. Thanks!

Prior line of code, I closed parenthesis and runs perfectly: should_proceed = input("Do you want to proceed Y/N "

1 Answer

That usually means something before the line you posted. Can you post your complete code?