QUERY · ISSUE
docs: Document limited numerical precision
docs
Documentation URL
No response
Description
Python normally uses double precision for all (floating point operations)[https://docs.python.org/3/library/numbers.html#numbers.Real]. MicroPython, depending on the platform, usually does not. This leads to surprises and errors, occasionally quite serious.
Unfortunately, this doesn't seem to be documented anywhere except in discussion groups.
I will create a pull request which attempts to deal with this lack.
Code of Conduct
Yes, I agree
CANDIDATE · PULL REQUEST
Document limited numerical precision
docs
Added limited doc changes to alert users about the difference in numerical precision relative to standard Python.