[Tutor] (no subject)

Emile van Sebille emile at fenx.com
Wed Jan 19 22:17:12 CET 2011


On 1/19/2011 1:09 PM Jacob Bender said...
> def display_board(self):
> print self.board_table % self.board[:]

Self.board is a list, but the formatting substitution needs to be passed 
a tuple.  Try:

print self.board_table % tuple(self.board)

Emile



More information about the Tutor mailing list