MCPcopy Create free account
hub / github.com/asweigart/PythonStdioGames / askForGuess

Function askForGuess

src/gamesbyexample/guess.py:9–15  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7
8
9def askForGuess():
10 while True:
11 guess = input('> ') # Enter the guess.
12
13 if guess.isdecimal():
14 return int(guess) # Convert string guess to an integer.
15 print('Please enter a number between 1 and 100.')
16
17
18print('Guess the Number, by Al Sweigart al@inventwithpython.com')

Callers 1

guess.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected