Top-down design

In class exercises
Design
The basic idea is to start with the general problem and try to express a solution in terms of smaller problems. Then each smaller problem is handled in the same way until eventually the problems get so small that they are trivial to solve. Then you write each piece, test it, and join it in the with the solution so far.

Let's demonstrate this idea with the dice game Craps.

A player rolls a pair of six-sided dice.

If the initial roll is 2, 3, or 12, the player loses.

If the initial roll is 7 or 11, the player wins.

Any other initial roll causes the player to "roll for point". This means that the player keeps rolling either until she re-rolls the initial value (a win) or rolls a 7 (a loss).

Let's write a program to simulate multiple games of craps and estimate the probability that the player wins.

Specification

Input: Number of games to simulate

Output: Probability of winning

File Demo
Run update21 and change to the inclass/w07-design directory.
[w07-design]$ ls
colors.txt  fileDemo.py  showContents.py
[w07-design]$ 
Open fileDemo.py in vim. In a separate window, change to the w07-design directory so you can run the program using python fileDemo.py.

Think about the answers to the following questions. Feel free to modify the program or use the python shell to help you answer these questions.

  1. What does fileDemo.py do?
  2. What is the format of colors.txt?
  3. What type of data does the readlines() method return?
  4. To which class of data (what type?) does the readlines() belong?
  5. What does the strip() method do?
  6. What does the strip() method return?
  7. Does the strip() method modify the original data?
  8. To which class of data (type) does the strip() method belong?
showContents
Open showContents.py in vim.

Using argv