Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 644 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 644 Bytes

Tic-Tac-Toe-Python-Turtle

Tic Tac Toe (Human vs Human).py

This is a game of tic-tac-toe to be played between two humans on the same device. It is built in Python using the Turtle module. The Turtle module is used to draw the grid and shapes and text in the window. The game follows the standard tic-tac-toe rules. Click to mark X or O. Click Reset to reset the game.

Tic Tac Toe (Human vs Computer) (Easy).py

This is a game of tic-tac-toe to be played by a human user against a computer. The human marks X, and the computer O. Computer chooses the square to mark completely randomly, and hence, it is very easy for the human to win.