What will be the output a = 8.6 b = 2 print a//b
Answers
Answered by
0
answer: 4.0
explanation:
in python we use // for floor division so the actual division answer would be 4.3 as we are using // it will floor the answer to 4.0
Similar questions