Earlier quoted context omitted.
Given the problems with statistical functions in Excel, perhaps we should be a tad worried?
A lot of Excel's issues are well-known because of how pervasive it is. Python and kin rely on C libraries and other layers of imported packages for numerical work that can lead to all sorts of numerical mischief. Even doing: round (2.575, 2) in Python leads to 2.57 instead of rounding up to 2.58. Everything in our engineering firm is checked by another engineer.
In [7]: round(2.575, 2)
Out[7]: 2.58
Umm?