This is simple tic tac toe game for two players
Install package using: $: pip install play-tictactoe
Import the package in Python:
from play_tictactoe import tic_tac_toe
Initiate a new game instance:
game = TTT() You will be promted to type players' names (they should be different)
Start game using play method:
game.play() You can print results using print_results method:
game.print_results()