Computer Science, asked by singhsaurav233, 1 month ago

What will be the output a = 8.6 b = 2 print a//b

Answers

Answered by sweety0132
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