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

Function divide

simple_calculator.py:33–35  ·  view source on GitHub ↗

Return the quotient of x divided by y.

(x: float, y: float)

Source from the content-addressed store, hash-verified

31
32
33def divide(x: float, y: float) -> float:
34 """Return the quotient of x divided by y."""
35 return x / y
36
37
38def calculator() -> None:

Callers 1

calculatorFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected