

InterviewSolution
Saved Bookmarks
1. |
Which type of elements are accepted by random.shuffle()?(a) strings(b) lists(c) tuples(d) integers |
Answer» Right option is (b) lists For explanation: Strings and tuples are immutable and an integer has no len(). |
|