import random
number_list = [1, 2, 3, 4, 5]
print ("Original list: ", number_list)
random.shuffle(number_list) #shuffle method
print ("Shuffle list: ", number_list)
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)