_summary_: Get the power of numbers Returns: _type_: _description_
(self)
| 65 | return self.num1 / self.num2 |
| 66 | |
| 67 | def power(self): |
| 68 | """_summary_: Get the power of numbers |
| 69 | |
| 70 | Returns: |
| 71 | _type_: _description_ |
| 72 | """ |
| 73 | return self.num1**self.num2 |
| 74 | |
| 75 | def root(self): |
| 76 | """_summary_: Get the root of numbers |