0
Please what this in python //
1 Answer
+ 11
Gavis ,
this a division operator for an integer division (also called floor division)
print(7/5, 7//5)
the result of 7/5 is 1.4 (which is a float value), the result of 7//5 is 1 (which is an integer value).
so the operator // cuts off the digital places and returns an integer value.