Report Bug
Qus : random.shuffle() function shuffle value of
Qusrandom.shuffle() फंक्शन किसकी वैल्यू को शफल करता है

A. take a sequence, like a list, and arrange the items in ascending order
B. take a sequence, like a list, and reorganize the order of the items.
C. take a sequence, like a list, and arrange the items in descending
D. take a sequence, like a list, and return the same copy of sequence


Solution
B. take a sequence, like a list, and reorganize the order of the items.



Explanation

the shuffle() function is part of the random module and is used to randomly shuffle the elements of a sequence in place. This function modifies the sequence directly and does not return a new shuffled sequence.

Example:

import random
# Create a list
my_list = [1, 2, 3, 4, 5]
# Shuffle the list in place
random.shuffle(my_list)
# Print the shuffled list
print("Shuffled List:", my_list)



Report Bug