April 2014
Beginner to intermediate
634 pages
15h 22m
English
Let's add a feature to our Blackjack simulation: analysis of results. We have several paths to implement this added feature. There are two dimensions to our considerations, leading to a large number of combinations. One dimension of our consideration is how to design the new features:
The other dimension is how to package the new features:
simulate.py and analyze.py.app.py simulate and app.py analyze.All four combinations are sensible ways to implement ...