(self)
| 110 | print("Example 5") |
| 111 | class WeightedGradebook: |
| 112 | def __init__(self): |
| 113 | self._grades = {} |
| 114 | |
| 115 | def add_student(self, name): |
| 116 | self._grades[name] = defaultdict(list) |
nothing calls this directly
no outgoing calls
no test coverage detected