This repository contains a simple chess game implemented in Python. The game initializes a chess board, allows players to move pieces, and prints the updated board after each move.
The chess game features:
- Initialization of a standard 8x8 chess board.
- Representation of chess pieces with specific symbols.
- Movement of pieces based on user input.
- Validation of basic move legality for each piece type.
This script uses the standard Python library. No additional modules are required to run this script.
Since no additional modules are required, there is no need for installation of external libraries. Ensure that you have Python installed on your system.
- Clone the Repository:
git clone https://github.com/ShravanDalavi/Simple-Python-Mini-Projects.git
- Navigate to Directory:
cd Simple-Python-Mini-Projects/Chess\ Game
- Run the Script:
python chess_game.py
- Play a simple chess game with basic moves implemented.