Skip to content

Floor Division

Floor Division operator (//) can be used to floor divide two numbers. This performs floor on the result after division.

Syntax
operand1 // operand2
Example
10 // 3
# 3