2.3 code practice edhesive
Answers
Answered by
1
Answer:
v_1 = float(input("Enter a numerator"))
v_2 = float(input("enter a divisor"))
print("quotient:" + str(int(v_1/v_2)))
print("reminder:" + str(int(v_1%v_2)))
Code practice 2.3 Question 1
Similar questions