Python Project
Python Project
TIRUCHIRAPALLI
PYTHON PROJECT
1
SRM INSTITUTE OF SCIENCE AND TECHNOLOGY
TIRUCHIRAPALLI
INDEX
4
2 Project Description
5
3 Source code
24
4 Output
27
5 Conclusion
2
SRM INSTITUTE OF SCIENCE AND TECHNOLOGY
TIRUCHIRAPALLI
1.ABSTRACT:
Rock, Paper, Scissors is a simple hand python
game that is often used as a decision-making tool
between two people. In this game, each player
simultaneously forms one of three shapes with an
outstretched hand. The possible shapes are "rock,"
"paper," and "scissors." The winner is determined
based on a set of simple rules:
Rock beats scissors (Rock crushes scissors).
Scissors beats paper (Scissors cut paper).
Paper beats rock (Paper covers rock).
3
SRM INSTITUTE OF SCIENCE AND TECHNOLOGY
TIRUCHIRAPALLI
2.PROJECT DESCRIPTION:
How to Play:
4
SRM INSTITUTE OF SCIENCE AND TECHNOLOGY
TIRUCHIRAPALLI
4.SOURCE CODE:
4.OUTPUT:
5
SRM INSTITUTE OF SCIENCE AND TECHNOLOGY
TIRUCHIRAPALLI
6
SRM INSTITUTE OF SCIENCE AND TECHNOLOGY
TIRUCHIRAPALLI
5. CONCLUSION:
In the end, we can conclude that we have successfully
developed the rock paper scissors game using the
Python programming language. We utilized
the Tkinter library in order for us to render graphics.
We also made use of the random module to generate
random choices. From this project, we learned the
way to create different widgets like labels, text fields,
and buttons. We have also seen how to call the
functions with the help of buttons. Hence, in the
following way, we were able to create a rock paper
scissors game in Python.