Help me in solving PYGUESS00 problem

My issue

how to do project

Learning course: Build Projects using Python
Problem Link: Project - Guess the number Practice Problem in Build Projects using Python - CodeChef

Hey @jigarprajapati ,
I hope you are doing well!, so you asked how to do this project in python.
So the link you have shared is the number guessing project which does the following :

  • The computer generates a random number between 1 to 100 and you need to guess the number
  • If your guess is greater than the number by 10 or lower than the number by 10 - the system will output ‘Cold’
  • If your guess is within a + / - 10 range from the number, the system will output ‘Hot’
  • You have unlimited attempts.

The concepts which will be required to build this project:

  • User output
  • User input
  • Conditional statements

Thank You :slight_smile: Keep Learning !

2 Likes