Skip to content

Latest commit

 

History

History
82 lines (52 loc) · 2.14 KB

File metadata and controls

82 lines (52 loc) · 2.14 KB

Python-Project

Rock, Paper, Scissors – Python Console Game

A simple and interactive Rock, Paper, Scissors game built with Python.
Play against the computer in multiple rounds, with score tracking and input validation.

🎮 Features

  • Classic Rock, Paper, Scissors gameplay
  • Play against a computer with random moves
  • Tracks scores across rounds
  • Validates user input and handles errors
  • Clean, readable code with comments

📂 Project Structure

🧠 Game Rules

Rock beats Scissors

Paper beats Rock

Scissors beats Paper

Same choices = Draw

✨ Example Output

--- Round 1 --- Enter your choice (rock, paper, scissors or quit to exit): rock You chose: rock Computer chose: scissors You win this round!

Score => You: 1, Computer: 0

🕹️ Tic Tac Toe – Python Console Game

A classic two-player Tic Tac Toe game in the terminal, written in Python.
Players take turns placing their symbol (X or O) on a 3×3 grid, aiming to get three in a row — horizontally, vertically, or diagonally.

📦 Features

  • Two-player turn-based gameplay
  • Input validation (no overwriting or invalid entries)
  • Win and draw detection
  • Option to play again after a match
  • Fully commented and beginner-friendly code

📂 Project Structure

Run Game

python tic_tac_toe.py

🎮 Game Instructions

  • The game starts with Player X.
  • Each player will be prompted to enter a move in the format: row column (e.g., 1 3 for top-right corner).

The game checks for:

  • A win (3 in a row, column, or diagonal)
  • A draw (all spaces filled)

After the result, players can choose to play again.

📸 Sample Output

Player X, enter your move as row and column (e.g. 1 2): 1 1 ... Player O wins! Do you want to play again? (y/n):

🚀 My Certificate

Certificate

📝 License

This project was developed for educational purposes and is not intended for commercial deployment without further development.