Home > Article > Backend Development > What is the python division operator?
What is the python division operator?
One: "/" Division - x is divided by y b / a Output result 2
Two: "//" Divide by integer - Return the integer part of the quotient (taken down Whole)
>>> 9//2 4 >>> -9//2 -5
Recommended: "python tutorial"
The above is the detailed content of What is the python division operator?. For more information, please follow other related articles on the PHP Chinese website!