6 ms·
The same reason int(-1.999) is -1; The operation is different to integer division. I think of it as taking the "integer" part of the float.
by mmcnickle 3y ago
The same reason int(-1.999) is -1; The operation is different to integer division. I think of it as taking the "integer" part of the float.
- Izkata 3y agoAs the article mentions, this is called truncation. It truncates (cuts off) the value at the decimal point.