what is the use of double slash in python
Answers
Answered by
27
Explanation:
Python has two division operators, a single slash character for classic division and a double-slash for “floor” division (rounds down to nearest whole number). Classic division means that if the operands are both integers, it will perform floor division, while for floating point numbers, it represents true division....
Answered by
0
Answer:
a single slash character for classic division and a double-slash for “floor
Explanation:
Similar questions