rfaile313 / CrapsWithBettingSystem

An easy Python Craps game I created from scratch with pass line betting
MIT License
31 stars 16 forks source link

Changed control flow and some @staticmethod decorators #22

Closed NachoNav closed 5 years ago

NachoNav commented 5 years ago

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.

rfaile313 commented 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()
rfaile313 commented 5 years ago

I also liked what you did teasing out ask_user.py and improving those two functions 👍