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

Project Begineer Textual Python (7)

The document outlines a beginner-level Python project to create a Snake Water Gun game, similar to rock-paper-scissors. Players choose between snake, water, and gun, with specific winning conditions for each choice. The project includes guidelines for coding practices, such as using meaningful variable names, adding comments, and creating functions.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

Project Begineer Textual Python (7)

The document outlines a beginner-level Python project to create a Snake Water Gun game, similar to rock-paper-scissors. Players choose between snake, water, and gun, with specific winning conditions for each choice. The project includes guidelines for coding practices, such as using meaningful variable names, adding comments, and creating functions.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Title Snake Water Gun

Technologies Textual Python


Domain Game
Level Begineer

Problem Statement – Write a python program to create a


game Snake Water Gun Game.
Description –
1. You have heard about the game rock paper scissor this
game is just like that.
2. It is a hand game in which the player randomly chooses
any of the three forms i.e., snake, water, and gun. Here, we
are going to implement this game using python.
3. This python project is to build a game for a single player
that plays with the computer
4. Following are the rules of the game:
Snake vs. Water: Snake drinks the water hence wins.
Water vs. Gun: The gun will drown in water, hence a point
for water.
Gun vs. Snake: Gun will kill the snake and win.
In situations where both players choose the same object, the
result will be a draw.
Code Evolution -
1. Add comments in your project.
2. All variables used in the program must be meaning full
name and in lower case.
3. Create functions for your game.
4. Winning message must be clear.
5. Use loops to repeat the round of the game.

Project Submission – Submit this project in your Coding


Connect LMS and also in your respective group
Feel free ask your doubt to your trainer

You might also like