MCPcopy Create free account
hub / github.com/geekcomputers/Python / div

Method div

advanced_calculator.py:58–65  ·  view source on GitHub ↗

_summary_: Get the quotient of numbers Returns: _type_: _description_

(self)

Source from the content-addressed store, hash-verified

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

Callers 1

forwardMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected