print("""Enter the known values for the equation V=IR. For the unknown value, enter \'x\'.""") voltage = raw_input('Enter the voltage: ') resistance = raw_input('Enter the resistance: ') current = raw_input('Enter the current: ') if voltage == 'x': xvolt = float(resistance) * float(current) print('The voltage is: ' + str(xvolt) + ' V') elif resistance == 'x': xres = float(voltage)/float(current) print('The resistance is: ' + str(xres) + ' Ohms') elif current == 'x': xcur = float(voltage)/float(resistance) print('The current is: ' + str(xcur*1000) + ' mA') else: print('You must have an unknown in the equation.')
Run
Reset
Share
Import
Link
Embed
Language▼
English
中文
Python Fiddle
Python Cloud IDE
Follow @python_fiddle
Browser Version Not Supported
Due to Python Fiddle's reliance on advanced JavaScript techniques, older browsers might have problems running it correctly. Please download the latest version of your favourite browser.
Chrome 10+
Firefox 4+
Safari 5+
IE 10+
Let me try anyway!
url:
Go
Python Snippet
Stackoverflow Question