Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've just written a simple pyhton class to create a list of lists (which will be a tic tac toe board) and it is giving me a syntax error and i have no idea why. I have compared the syntax to a number of other classes all of which work and all of which have the same syntax (from what i can see). I'll paste the code in here, if someone can find out why I'm getting the error that would be amazing. Also this is Python 3.2. The error occurs at the second colon of the code, so after the constructor declarations (or at lease that's whats highlighted in red).

class Board:
    def__init__(self, N):
        """Create a list of lists that will represent my playing board"""
        self._N = N
        Brd = []
        for i in range(N):
            Brd = Brd + ['()','()','()']
        self._theBoard = Brd

    def drawBoard(N):
        """Draws the Board"""
        print(self._theBoard)

Thanks in advance,

Dave

share|improve this question
5  
what error message? – gefei Dec 21 '12 at 11:52
put a space after "def" – Mr E Dec 21 '12 at 11:52
3  
For future reference: always include the full traceback in your post, so we don't have to guess at your error. – Martijn Pieters Dec 21 '12 at 11:56

closed as too localized by Francis Avila, Jon Clements, Martijn Pieters, Blair, Karl Knechtel Dec 21 '12 at 14:15

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

4 Answers

up vote 10 down vote accepted

You are missing a space between def and __init__:

def__init__(self, N):

Add that in:

def __init__(self, N):

Note that your drawBoard(N) method is missing the self argument; N will be set to the instance instead when called.

share|improve this answer
Sweet, thanks a lot. – Dave Dec 21 '12 at 11:54

I guess you meant drawBoard to be a method in your Board class, in this case you need to pass self to it explicitly:

def drawBoard(self, N):
    """Draws the Board"""
    print(self._theBoard)

and it should be indented the same way as the other method. Note, that the N parameter is useless here.

Others already pointed missing space after def in your __init__ method definition.

share|improve this answer
1  
Not the source of the current problem, but a good point. – Lev Levitsky Dec 21 '12 at 11:54

you forgot to give a space here:

def__init__(self, N):

should be

def __init__(self, N):
share|improve this answer

__init__ is the way to define constructor in python. You have to precede it by def to declare it is a function. Hence the correct way to do so is:

def __init__():

That is put space between def and init.

share|improve this answer

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