mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-02-25 18:38:39 +00:00
test electric_power
This commit is contained in:
parent
03a42510b0
commit
f819ab93df
@ -34,6 +34,8 @@ def electric_power(voltage: float, current: float, power: float) -> tuple:
|
|||||||
ValueError: Power cannot be negative in any electrical/electronics system
|
ValueError: Power cannot be negative in any electrical/electronics system
|
||||||
>>> electric_power(voltage=2.2, current=2.2, power=0)
|
>>> electric_power(voltage=2.2, current=2.2, power=0)
|
||||||
Result(name='power', value=4.84)
|
Result(name='power', value=4.84)
|
||||||
|
>>> electric_power(current=0, power=6, voltage=2)
|
||||||
|
Result(name='current', value=3.0)
|
||||||
"""
|
"""
|
||||||
if (voltage, current, power).count(0) != 1:
|
if (voltage, current, power).count(0) != 1:
|
||||||
raise ValueError("Only one argument must be 0")
|
raise ValueError("Only one argument must be 0")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user