0% found this document useful (0 votes)
4 views

Document (2)

The document outlines a project on creating a Rock, Paper, Scissors game using Python, authored by Yogesh Joshi. It includes acknowledgments to the teacher and peers, an introduction to the game's rules, and the project's objectives, which involve user input, random choice generation, and determining the winner. The conclusion emphasizes the learning experience gained in programming concepts through the project.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

Document (2)

The document outlines a project on creating a Rock, Paper, Scissors game using Python, authored by Yogesh Joshi. It includes acknowledgments to the teacher and peers, an introduction to the game's rules, and the project's objectives, which involve user input, random choice generation, and determining the winner. The conclusion emphasizes the learning experience gained in programming concepts through the project.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

ROCK PAPER SCISSORS

GAME

NAME:- Yogesh Joshi


CLASS:- 10 C
Roll number :- 41
SUBJECT:- Artificial intelligence
Acknowledgment
I would like to express my sincere
gratitude to my teacher, Ms. Abhilasha
Dubey mam for her guidance and
encouragement throughout this project.
Her support and feedback were
invaluable in helping me understand the
concepts required to complete this project
successfully. Additionally, I would like to
thank my classmates and family
members for their continuous support and
motivation. This project was a rewarding
learning experience, and I am grateful for
the knowledge and skills I have gained.
Introduction

Rock, Paper, Scissors is a popular hand


game that is often played by two people.
Each player simultaneously forms one of
three shapes with their hand: Rock, Paper,
or Scissors. The winner is determined
based on the rules:

Rock beats Scissors


Scissors beats Paper
Paper beats Rock

This game is a great way to practice


decision-making and programming logic.
In this project, we will develop a simple
Python program that allows the user to
play Rock, Paper, Scissors against the
computer.

Objective

The objective of this project is to develop


a Python program that:

1. Allows the user to input their choice


(Rock, Paper, or Scissors).
2. Randomly generates a choice for the
computer.
3. Compares both choices and
determines the winner based on the
game rules.
4. Repeats the game until the user
decides to exit.
Python Code for Rock, Paper,
Scissors Game
Conclusion
This project demonstrates how simple
programming concepts such as user
input, randomization, conditional
statements, and loops can be used to
create an interactive game. By
developing this Rock, Paper, Scissors
game in Python, I have strengthened my
understanding of basic Python
programming and control structures.

You might also like