1
import random

print "Welcome to my mastermind game. instead of colors, \
we will be using numbers, one through six \
(red is left, white is right)"

board = []
for x in range(0, 10):
    board.append(["O"]*4)

def mastermind_board(board):
    for row in board:
        print " ".join(row)

...
    mastermind_board(board)
turn + 1

行は問題がある場所です。print " ".join(row)最初の項目を送信した後、エラーが表示されます (ドットは質問にとって重要ではない追加のコードです)

4

2 に答える 2