python //What does it mean?
In Python " // " represents integer division.
X // Y
//The effect of the operation is the same for Python2. For point calculation, the result will still be returned in the form of a floating point number, such as -5.0 // 2, the result is -3.0:
Recommended: "python tutorial"
-5 // 2 #2.X 商:-3 余数:1 #3.X 商:-3 余数:1 #C 商:-2 余数:-1 -5.0 // 2 #2.X 商:-3.0 余数:1.0 #3.X 商:-3.0 余数:1.0 #C 商:-2.5 余数:C的取余运算不支持浮点数
The above is the detailed content of python //What does it mean?. For more information, please follow other related articles on the PHP Chinese website!