This repository was archived by the owner on Oct 5, 2025. It is now read-only.

Description
Description:
Create a Python script for a Rock-Paper-Scissors game that allows a user to play against the computer. The game should handle user input, generate a computer choice, and determine the winner based on traditional game rules.
Requirements:
- User Input: Prompt the user to choose "rock," "paper," or "scissors."
- Computer Choice: Use Python's
random module to generate a random choice for the computer.
- Determine Winner: Compare user and computer choices and determine the winner based on these rules:
- Rock beats Scissors
- Scissors beats Paper
- Paper beats Rock
- Replay Option: Ask the user if they'd like to play another round after each game.
Acceptance Criteria:
- The program correctly identifies the winner or declares a tie.
- The program can be replayed without restarting.
- Code is clean, well-documented, and follows Python conventions.