programming
For the enclosed program you must write an IPO also run the program and explain the functions process.
Programming Exercise Guessing Game (to test change the 1-100 to 1-10)
import random
# main function
def main():
# Initializing local variables
number = 0
play = 1
# Continue presenting numbers for the user
# to guess while the user wants to continue
# playing.
while(play > 0):
number = random.randint(1, 100)
play = playGuessingGame(number)
print('Thanks for playing!')
# The playGuessingGame function receives the number that the
# user has to guess as an argument and prompts the user for
# guesses. If the user guesses incorrectly he is notified,
# and is prompted to try again. Otherwise, the user's guess
# is returned.
def playGuessingGame(number):
# Get the user's guess.
userGuess = int(input('Enter a number between 1 and 100, ' \
'or 0 to quit: '))
# As long as user doesn't want to quit
while userGuess > 0:
if userGuess > number:
print('Too high, try again')
userGuess = int(input('Enter a number between 1 ' \
'and 100, or 0 to quit: '))
elif userGuess < number:
print('Too low, try again')
userGuess = int(input('Enter a number between 1 ' \
'and 100, or 0 to quit: '))
else:
print('Congratulations! You guessed the right number!')
return userGuess # Start the game again
return userGuess # UserGuess is 0 and user wants to quit.
# Call the main function.
main()
7 years ago
15
Purchase the answer to view it

- py-guess-game.zip
Purchase the answer to view it

- Code.docx
- guess.py
- guess.PNG
- The Human Factor
- chemistry homework
- health care service provider
- Mat 540 Statistical Concept of Research
- ACC 561 Accounting Week 5 Team Assignment
- Brand managment
- Write a four to five (4-5) page paper in which you: Describe in what way your proposed business action is an innovative idea. Explain why you think this idea will benefit the business in terms of return of investment (ROI). Prepare a plan to present your
- A-plus Writer-LASA 2: Implementing Six Sigma at Wishmewell Hospital
- astronomy class
- Sir_excellence
