Post

@PythonPr Answer: (A)
Explanation: This is "//" floor division operator, so 10//5 = 2 hence it prints 2 and its of integer datatype.
<class 'int'>
English

@PythonPr Floor division drops decimal values and returns an int, so 2
English

@PythonPr Answer: A
Solution: There are 2 division operators in Python, / and //.
/ is regular division. It gives back a float, even if the operands are ints.
// is floor division. It returns what we call "quotient". It gives back an int if the operands are ints.
The value is
+
English
















