current = float(input("Enter the current in the circuit (in Amps): "))
voltage = float(input("Enter the voltage in the circuit (in Volts): "))
resistance = find_resistance(current, voltage)
print("The resistance in the circuit is:", resistance, "Ohms")
Пояснення:
Цей код приймає значення струму та напруги як вхідні дані та повертає значення опору шляхом ділення напруги на силу струму. Значення опору відображається в Омах.
Answers & Comments
Відповідь:
def find_resistance(current, voltage):
return voltage/current
current = float(input("Enter the current in the circuit (in Amps): "))
voltage = float(input("Enter the voltage in the circuit (in Volts): "))
resistance = find_resistance(current, voltage)
print("The resistance in the circuit is:", resistance, "Ohms")
Пояснення:
Цей код приймає значення струму та напруги як вхідні дані та повертає значення опору шляхом ділення напруги на силу струму. Значення опору відображається в Омах.
Ответ:
print('R, Ω:',float(input('U, V: '))/float(input('I, A: ')))
Объяснение: