Post

@PythonPr This uses the floor division operator (//), which returns the largest integer less than or equal to the result of the division.
Calculation:
10 / 3 = 3.333...
10 // 3 performs floor division, so it returns 3
Answer: B) 3
English

@PythonPr this is super handy , love seeing python tricks that save time
English

@PythonPr Finally getting walk in a pack question easily 3.33
English

@PythonPr 3 because // signifies floor division….
English

@PythonPr Correct Answer: Option B.
Here floor division is going on which gives quotient as a result.
English

@PythonPr // = floor division
Thus, answer is B
English

@PythonPr 3, floor division only gives out whole number
English

























