What will be the output of the following Python function, assuming that the random library has already been included?
random.shuffle[1,2,24]
random.shuffle[1,2,24]A. Randomized list containing the same numbers in any order
B. The same list, that is [1,2,24]
C. A list containing any random numbers between 1 and 24
D. Error
Answer: Option D

Join The Discussion