Develop a simple number guessing game (100pts) (a) Introduction The user is asked to guess a number against the computer (who has already chosen a number between 1 and 10). You are prompted to guess...

1 answer below »
Python programming hw


Develop a simple number guessing game (100pts) (a) Introduction The user is asked to guess a number against the computer (who has already chosen a number between 1 and 10). You are prompted to guess continuously until you get the correct answer or until you have made 10 guesses--then the game is over. The program then asks if you'd like to play again and will repeat the game if you agree. (b) The Task Several functions have been defined with clear descriptions of parameters and returns, which will help you implement the game. Your task is to implement those functions in that file. 20 pts - Display_Title() 20 pts - Play_Game() 40 pts - main() 10 pts - Overal workability of code (c) The Methods Display_Title() This method takes in no parameters, returns nothing, and prints out the title intro to the game. Play_Game() In this method, the randInt() method is used to get the computer’s choice of a number (the number the player is trying to guess). It returns a random number between 1 and 10. Later, a while statement lets the user guess the number until the guess is correct. Then, a return statement returns to the statement in the main() function that’s after the call to the Play_Game() function. This return statement doesn’t specify a return value, but it does end the function. This method has no parameters. main() This is where the main lines of codes, and calls to other methods will go. +++++ Tip: to run your program (where the main() is where your program starts), please include the following lines of code at the bottom of your program: if __name__ == ​“​__main__“: main() (d) Other This program is due 4 / 1 by the end of the day (by midnight). Please submit your .py code as follows: yourname_Number_Game.py. Please submit it to blackboard (I will show you where).
Answered Same DayMar 31, 2022

Answer To: Develop a simple number guessing game (100pts) (a) Introduction The user is asked to guess a number...

Kshitij answered on Apr 01 2022
95 Votes
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here