Guessing Game Running Design Example
Example of a design that runs without syntax errors
$ python3 gg-design.py Intro to guessing game... 25 your guess: 10 Nope...too low your guess: 80 Nope...too high. your guess: 25 Correct!! Super. 3
Note: in the above output, I am getting guesses and showing if too high or too low, since that part is done in main(). However, I haven’t really implemented the function that gets the guess and makes sure it is a valid guess. And if I take 3 guesses or 300 guesses, it still says "Super" at the end. Each of the functions has been stubbed out, but each still needs to be fully implemented.