Explain division(//) and percentile(%) operator
Answers
Answered by
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