Shuffle Array Elements using Python October 8, 2020 Python 0 Comments 412 Views random module import random data = [10, 3, 17, 50, 15] random.shuffle(data) print(data)
Leave a Comment
Cancel reply