//

Description

// is the integer division operator. The result can be interpreted as the quotient.

Example

17 // 5

This expression calculates how many times 5 fits completely into 17, which is 3.

Last updated