Although int values are combined above, dividing one int by another yields a float value: a truncated finite approximation to the actual ratio of the two integers divided.
>>> type ( 1 / 3 ) <class 'float'> >>> 1 / 3 0.3333333333333333
Problems with this approximation appear when we conduct equality tests.
>>> 1 / 3 == 0.333333333333333312345 # Beware of float approximation True
status | not read | reprioritisations | ||
---|---|---|---|---|
last reprioritisation on | suggested re-reading day | |||
started reading on | finished reading on |