Computer Science, asked by arjunkansal403711, 13 hours ago

Divides the operand on the left by the operand on the right and returns the quotient by removing the decimal part.
1. /
2. %
3. //
4. >

give only correct answer

Answers

Answered by SherlockHolmes221b
2

Answer:

//

Explanation:

// is integer division operator in python, i.e., it returns only the integer part.

For example,

print(5 // 2) #gives 2 output removing the .5 from 2.5

Similar questions