tictactoe

tictactoe |1| TabCode.Net, Programming, Database, Networks, Hacking, System Security, Operating Systems, Applications, Softwares ...
  1. Python TicTacToe with Tk and minimax AI

    Python TicTacToe with Tk and minimax AI # coding=UTF8 from Tkinter import Tk, Button from tkFont import Font from copy import deepcopy class Board: def __init__(self,other=None): self.player = 'X' self.opponent = 'O' self.empty = '.' self.size = 3 self.fields = {}...
Back
Top