# Again with the Number-Guessing Redo the [Number-Guessing with a Counter](number-guessing-with-a-counter.md) assignment using a post-test loop instead of a `while` loop. Otherwise it should do exactly the same things (including the counter). Make sure that it doesn't mess up if you guess it on the first try. Name your file: `guess_again.py` ``` I have chosen a number between 1 and 10. Try to guess it. Your guess: 5 That is incorrect. Guess again. Your guess: 4 That is incorrect. Guess again. Your guess: 8 That is incorrect. Guess again. Your guess: 6 That's right! You're a good guesser. It only took you 4 tries. ``` --- ©2021 Daniel Gallo This assignment is licensed under a [Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License](https://creativecommons.org/licenses/by-nc-sa/3.0/us/deed.en_US). ![Creative Commons License](images/by-nc-sa.png) Adapted for Python from Graham Mitchell's [Programming By Doing](https://programmingbydoing.com/)