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 trialWilliam Morgan
Courses Plus Student 803 PointsCan 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
1 Answer
KRIS NIKOLAISEN
54,971 PointsThat usually means something before the line you posted. Can you post your complete code?
William Morgan
Courses Plus Student 803 PointsWilliam Morgan
Courses Plus Student 803 PointsThat'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 "