Qus : What does random.shuffle(x) do when x = [1, 2, 3]?
Qusजब x = [1, 2, 3] random.shuffle(x) क्या करता है?
A. error B. do nothing, it is a placeholder for a function that is yet to be implemented
C. shuffle the elements of the list in-place D. none of the mentioned
Solution
C. shuffle the elements of the list in-place
Explanation
The elements of the list passed to it are shuffled in-place.