Tic Tac Toe – Python Description A console-based two-player Tic Tac Toe game implemented in Python using a 3x3 board.
Features 3x3 game board using a 2D list Two-player gameplay (X and O) Win detection for rows, columns, and diagonals Tie detection after 9 moves Input validation to prevent overwriting moves How to Run Make sure Python is installed Run the file using: python tic_tac_toe.py Concepts Used Lists (2D list) Functions Loops and conditionals Basic problem-solving logic