五子棋游戏程序源码

import numpy as np

def create_board():

board = np.zeros((15, 15))

return board

board = create_board()

print(board)