Home /
Expert Answers /
Computer Science /
can-you-please-explain-this-is-in-python-activity-1-guessing-game-individual-write-a-python-pa172
(Solved): Can you please explain? This is in python
Activity \#1: Guessing game - individual Write a python ...
Can you please explain? This is in python
Activity \#1: Guessing game - individual Write a python program named guessing_game.py to play a number guessing game. Have your program display a short message with instructions, then continually prompt the user to guess a number. With each wrong guess, let the user know if their guess is too high or too low. When the user correctly guesses the number, output the total number of guesses made. Write your program using at least two (2) functions and a try-except statement. Example output: Guess the secret number! Hint: it's an integer between 1 and \( 100 \ldots \) What is your guess? 50 Too high! What is your guess? 12 Too low! What is your guess? \( 0.5 \) Bad input! Try again: 26 You guessed it! It took you 3 guesses.