Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 843 Bytes

README.md

File metadata and controls

39 lines (31 loc) · 843 Bytes

Tic Tac Toe in Python

A few simple, text-based Tic Tac Toe game implementations. To help you learn Python.

Instructions

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

Alternatives & Tutorials

How To Contribute

Please, run Flake8 and, optionally, Pylint before committing changes and opening a PR:

$ flake8
$ pylint *.py