import random
random.shuffle(array)
import random
ary = [8, 7, 1, 67, 77, 108, 801, 800, 777, 131, 414]
new_array = random.sample(ary, len(ary) )
for items in range(100):
print(random.sample(ary, len(new_array)))
# import the random module
import random
# declare a list
sample_list = ['A', 'B', 'C', 'D', 'E']
print("Original list : ")
print(sample_list)
# first shuffle
random.shuffle(sample_list)
print("
After the first shuffle : ")
print(sample_list)
# second shuffle
random.shuffle(sample_list)
print("
After the second shuffle : ")
print(sample_list)