Post

@PythonPr Answer: B (3)
For beginners: // is floor division (not regular division). It divides and drops the decimal: 10 / 3 = 3.333..., but 10 // 3 = 3.
Remember: / = regular division, // = floor division. Double slash removes the fractional part!
English

@PythonPr In python // operator denotes floor division
Then in the given question 10//3 which is floor value of(3.33) then the output will be 3
Therefore the correct option is B) 3
#CtrlPlusCode #LearningTogether
English

@PythonPr The output is 3 because the // operator does floor division — it drops the decimal part. So 10 / 3 would be 3.333…, but 10 // 3 becomes 3.
English

@PythonPr Answer: B) 3.
// is floor division — it returns the largest integer ≤ the exact quotient.
10/3 = 3.333…, floor → 3.
(Edge case: it floors toward −∞, so -10 // 3 is -4, not -3.)
English






















