Closed NachoNav closed 5 years ago
These changes look great by the way @NachoNav -- nice work!
My only suggestion from here (if you want) is to swap the main.py and run.py files and rename run.py since best practice is always to run from the main.py file with
if __name__ == '__main__':
main()
I also liked what you did teasing out ask_user.py and improving those two functions 👍
Now the game is run from the file run.py, and the user will be asked to continue playing every round. The I/O functions are managed in a new different file (ask_user.py). I fixed some methods not working properly and some bugs.