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 trialRichard Chuks
5,168 PointsInvalid Syntax error for some reason.
I appreciate some help here:
Here is my code: name = input("What's your name? ")
understanding = input("{}, do you understand Python while loops?\n(Enter yes/no)".format(name))
while understanding.lower != "yes":
print(("Ok, {}, while loops in Python repeat as long as a certain Boolean conditions is met.".format(name))
understanding = input("{}, do you understand Python while loops?\n(Enter yes/no)".format(name))
print("That's great, {}. I'm pleased that you understand while loops now. That was getting repetitive.".format(name))
ERROR:
File "as.py", line 8
understanding = input("{}, do you understand Python while loops?\n(Enter yes/no)".format(name))
^
SyntaxError: invalid syntax
2 Answers
Steven Parker
231,261 PointsSyntax errors are often not detected until the next line. In this case, line 7 has unbalanced parentheses:
print(("Ok, {}, while loops in Python repeat as long as...
# ^
# extra (unbalanced) parenthesis
vladimirv
12,124 Pointswhile understanding.lower() != "yes":