(self, value)
| 108 | print("Example 8") |
| 109 | class ThisWay(TimesSeven, PlusNine): |
| 110 | def __init__(self, value): |
| 111 | TimesSeven.__init__(self, value) |
| 112 | PlusNine.__init__(self, value) |
| 113 | |
| 114 | foo = ThisWay(5) |
| 115 | print("Should be (5 * 7) + 9 = 44 but is", foo.value) |