_summary_: Get the quotient of numbers Returns: _type_: _description_
(self)
| 56 | return self.num1 * self.num2 |
| 57 | |
| 58 | def div(self): |
| 59 | """_summary_: Get the quotient of numbers |
| 60 | |
| 61 | Returns: |
| 62 | _type_: _description_ |
| 63 | """ |
| 64 | # What do we mean by quotient? |
| 65 | return self.num1 / self.num2 |
| 66 | |
| 67 | def power(self): |
| 68 | """_summary_: Get the power of numbers |