

InterviewSolution
Saved Bookmarks
1. |
What is the result of sum([.1 for i in range(20)])?(a) 2.0(b) 20(c) 2(d) 2.0000000000000004 |
Answer» Right answer is (d) 2.0000000000000004 Explanation: There is some loss of accuracy when we use sum with floating point numbers. Hence the function fsum is preferable. |
|