A few simple, text-based Tic Tac Toe game implementations. To help you learn Python.
Clone this repository to your local disk using Git, e.g.
git clone https://github.com/talent-campus/tictactoe.git
cd tictactoe
Then run the programs from your terminal using Python, e.g.
python3 tictactoe_humans.py
python3 tictactoe_computer.py
python3 tictactoe_nice.py
- Invent With Python - Tic Tac Toe walkthrough by Al Sweigart
Please, run Flake8 and, optionally, Pylint before committing changes and opening a PR:
$ flake8
$ pylint *.py