

InterviewSolution
Saved Bookmarks
1. |
Suppose list1 is [3, 5, 25, 1, 3], what is min(list1)?(a) 3(b) 5(c) 25(d) 1I have been asked this question during an interview.Question is taken from Lists in chapter Lists & List Comprehension of Python |
Answer» The CORRECT choice is (d) 1 |
|