vote up 1 vote down star

Here's a small sample section of some code I'm writing with python and pygame, for some reason it seems to be claiming that some seemingly very simple and apparently accurate things are syntax errors. Here's possibly the most annoying example.

def Draw():
    Surface.fill((255,255,255))
    for square in squares:
        pygame.draw.rect(Surface,(0,0,0),(square.x,square.y,height,height)

def main():
    while True:
        GetInput()
        Move()
        CollisionDetect()
        Draw()

for some reason the word def at the start of line 6 get higlighted red and marked as an error, any idea why would be incredibly helpful, thanks :) (any other code you need, just comment).

flag

Perhaps you should find an editor that does parenthesis matching for you, or at least highlights them pairwise. – Svante Feb 27 at 18:52
I agree. If your editor can't pick out this problem, it is time to get a new editor. – Nick Presta Feb 27 at 18:54
"some seemingly very simple and apparently accurate things". You might want to fix your question to better reflect what's really going on. Other people want to learn from your question -- and this is pretty misleading. – S.Lott Feb 27 at 19:11

6 Answers

vote up 13 vote down check

Unbalanced parentheses on line 4.

You're missing a closing )

link|flag
wooooooooooo, 3rd time I've done that in 2 days, I so need to get some sleep... thanks though you guys :):):) – leachrode Feb 27 at 18:36
What kind of editor are you using? Any decent editor should be able to highlight mismatched braces and parentheses – Kena Feb 27 at 20:01
I got gotten with this using Pydev. It has matching parentheses, but I couldn't see that it wasn't matched properly – Casebash Sep 17 at 2:11
Why are there so many duplicate answers? – Casebash Sep 17 at 2:13
vote up 8 vote down

Here's a quick tip for dealing with syntax errors: if the compiler or interpreter is complaining about a completely normal looking line, check the line just above it.

link|flag
Absolutely! Works for almost all languages... – mtruesdell Feb 27 at 19:45
You've piqued my curiosity. What language doesn't it work on? – David Locke Feb 27 at 21:36
vote up 5 vote down

You missed one closing paranthesis:

pygame.draw.rect(Surface,(0,0,0),(square.x,square.y,height,height)

There are three "(" parenthesis but only two ")"

link|flag
vote up 5 vote down

It looks like you're missing a parenthesis on this line: pygame.draw.rect(Surface,(0,0,0),(square.x,square.y,height,height)

edit: I would like to add that in the future it might help if you paste whatever syntax error the interpreter gave you in your question.

link|flag
vote up 3 vote down

Say, did anybody mention that you're missing a parenthesis? ;)

link|flag
vote up 3 vote down

Syntax errors in most languages happen AFTER the actual error, because the parser doesn't always KNOW something is wrong until it finds some later bit that can't be there. The parser complains about the thing that can't be, rather than what you did wrong.

tl;dr: Always look for the syntax error from where the compiler complained and work backwards toward the start of the file.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.