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
