

InterviewSolution
Saved Bookmarks
1. |
Which of the following functions helps us to randomize the items of a list?(a) seed(b) randomise(c) shuffle(d) uniform |
Answer» The correct choice is (c) shuffle The best I can explain: The function shuffle, which is included in the random module, helps us to randomize the items of a list. This function takes the list as a parameter. |
|