rudra016 / WebDev-OpenSource

This is a Repository where different types of Front - End Projects are present. If you have any front end project or are eager to improve the existing ones, then you can contribute to this Open source repository.
80 stars 116 forks source link

#302 Added a Guess-The-Number game #305

Closed rishirajm007 closed 8 months ago

rishirajm007 commented 8 months ago

I have closed issue #302. I kindly request your review, and should you deem any modifications necessary, please do not hesitate to inform me. Your feedback is greatly appreciated. Thank you. Have a great day. :)

rishirajm007 commented 8 months ago

Hello @Haris-Mohanty, I would like to inquire whether you would prefer me to generate a readme file for my project, or if it would be sufficient for you to reference the specific issue number where I have detailed my project description. Your guidance in this matter is greatly appreciated. Thank you.

rishirajm007 commented 8 months ago

image

Description:

The "Simple Python Guessing Game" is a basic interactive game where the player's objective is to guess a randomly chosen number between 1 and 100. The game provides feedback to help the player refine their guesses. Here are the key features of the game:

Objective: The player's goal is to guess the secret number within as few attempts as possible.

User Interaction: The game prompts the player to enter a numerical guess through the terminal.

Feedback: After each guess, the game provides feedback, letting the player know if the guess is too high or too low.

Win Condition: The game ends when the player correctly guesses the secret number, and it displays the number of attempts it took to achieve this.

Input Validation: The game includes basic input validation to handle non-numeric input and provide instructions to the player.

Replayability: Players can replay the game as many times as they like, making it suitable for a quick and fun challenge.

It's a straightforward and beginner-friendly game that demonstrates basic Python programming concepts, including random number generation, user input, and conditional statements. You can further customize and expand the game to include more features, levels, or graphical interfaces based on your preferences and skill level.