0 votes
in Python by
What is the // operator? What is its use?

1 Answer

0 votes
by

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

...