Login
Remember
Register
Ask a Question
What is the use of the // operator in Python?
0
votes
asked
Sep 21, 2021
in
Python
by
sharadyadav1986
What is the use of the // operator in Python?
-operator
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 21, 2021
by
sharadyadav1986
Using the // operator between 2 numbers gives the quotient when the numerator is divided from the denominator. It is called the Floor Division operator. It is one of the general questions from the Python interview questions and answers guide.
...