Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 66f7bf6

Browse files
committed
update
1 parent 005eabf commit 66f7bf6

File tree

1 file changed

+30
-4
lines changed

1 file changed

+30
-4
lines changed

README.md

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
1-
#### Day 83 of 100 Days of Python
2-
#### Project name: Tic Tac Toe
3-
#### Things I implemented: Object Oriented Programming, Functions, List Comprehension
1+
# TicTacToe Python Game
2+
3+
## Description
4+
This TicTacToe game is a simple, text-based version of the classic game implemented in Python. It allows two players to play TicTacToe against each other on the command line.
5+
6+
![Main Screen](main-screen.png)
7+
8+
## Installation
9+
1. Clone this repository to your local machine using `git clone https://github.com/your-username/tictactoe-python.git`.
10+
2. Navigate to the cloned directory.
11+
3. Run `python ticTacToe.py` to start the game.
12+
13+
## Requirements
14+
- Python 3.x
15+
16+
## How to Play
17+
1. Choose the 'Play' option from the main menu.
18+
2. Player 1 will use 'X' and Player 2 will use 'O'.
19+
3. Players will take turns to input their move in the format `row,col` - for example, `1,3` for row 1, column 3.
20+
4. The first player to get 3 of their marks in a row (up, down, across, or diagonally) is the winner.
21+
22+
![Gameplay Video](play.mp4)
23+
24+
## Contributing
25+
Contributions are welcome! For major changes, please open an issue first to discuss what you would like to change.
26+
27+
## License
28+
[MIT](https://choosealicense.com/licenses/mit/)
29+
30+
431

5-
#### Link to repl.it: https://replit.com/@matthewadrianus/ticTacToe

0 commit comments

Comments
 (0)