Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



#python #sicp

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 
If you want to change selection, open document below and click on "Move attachment"


Summary

statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

Details



Discussion

Do you want to join discussion? Click here to log in or create user.