find out the value of 24//5 in python program?
Answers
Answered by
0
Answer:
quotient = 24 / 5
print(quotient)
Explanation:
first enter a variable (i have put quotient here), and then you have to print that variable
Similar questions