0 votes
in Python by
Mention the use of // operator in Python?

1 Answer

0 votes
by

It is a Floor Divisionoperator , which is used for dividing two operands with the result as quotient showing only digits before the decimal point. For instance, 10//5 = 2 and 10.0//5.0 = 2.0.

Related questions

0 votes
asked Dec 22, 2019 in Python by rajeshsharma
+2 votes
asked Jan 1, 2022 in Python by sharadyadav1986
...