Release Notes:
Initial version with
* calculation to find the values of Voltage, Amperage, Resistance, and Find the Value of a resistor for an electrical circuit
example
current multiplied by resistance = voltage
python
>>> o = Ohms()
>>> results = o.volts(I=12, R=4)
>>>
>>> print(results)
48
>>>
**Full Changelog**: https://github.com/JuanBindez/ohmslaw/commits/v1.0.0