Why trust python?
Let’s assume that you are running a python program. you import the math module with the command “import math”. You then ask python to return the fractional and integer parts of the number 100.12. Python then outputs the following: (0.12000000000000455, 100.0). By adding “000000000000455” after the “.12”, python has returned a false value.
If Python produces “some” incorrect answers, why is it trusted to handle massive mathematical tasks like producing an A.I. from massive data bases?