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.

Related questions

+2 votes
asked Jan 1, 2022 in Python by sharadyadav1986
+1 vote
asked Jan 30, 2022 in Python by sharadyadav1986
...