Computer Science, asked by 5526ramsahith, 6 months ago

Explain division(//) and percentile(%) operator​

Answers

Answered by pratyushgupta12
0

Answer:

division operator returns the quotient

percentile operator returns the remainder

Explanation:

// operator(double division sign) will return the quotient in int form in python

e.g.: 4/2 will return 2.0

5%3 will return 2

5//3 will return 1(only in python)

Similar questions