Preliminary
Due Date: Wednesday, March 8 by 12:45 This is an partner assignment.
Bowling Scores - 100 points
Create a Python program that correctly scores a game of bowling. This site explains the basics of how the scoring works.
Materials
- Take bowling.py and modify it by adding the missing
score_game
function (and any other functions that you want to add). Do not modify the provided function. - The file bowling_input.txt is a sample input file. The first number in the file is the number of one person games. For each game, there will be 10 lines where each line shows the scores of the balls that were rolled for a particular frame.
- The file output.txt shows the output that the program should produce when
bowling.txt
is the input file. Match the format of the output exactly.
Requirements and Grading
- 40 points - The
score_game
function correctly scores games with open frames (i.e., a frame with neither a strike nor a spare). The scores output is written correctly to a new file. - 20 points - Games with open frames and spares are scored correctly.
- 20 points - Games with open frames, spares, and strikes are scored correctly.
- 10 points - The data written to a new file matches the sample output format exactly.
- 10 points - The Python code is properly commented, easy to understand and doesn’t contain significant redundancies.
Submission
Place the solution in a file named bowling_[firstname].py
and submit it in the Portal no later than 12:45 PM on Wednesday, March 8.