python random.shuffle code example
Example 1: python shuffle list
import random
number_list = [7, 14, 21, 28, 35, 42, 49, 56, 63, 70]
print ("Original list : ", number_list)
random.shuffle(number_list) #shuffle method
print ("List after shuffle : ", number_list)
Example 2: python randomize list
import random
random.shuffle(list)
Example 3: python random number
from random import randint
print(randint(1,3))
#Possible Outputs#
#1
#2
#3
Example 4: randomly shuffle array python
import random
l = list(range(5))
print(l)
# [0, 1, 2, 3, 4]
lr = random.sample(l, len(l))
print(lr)
# [3, 2, 4, 1, 0]
print(l)
# [0, 1, 2, 3, 4]
Example 5: random.shuffle
import random
list = [20, 16, 10, 5]
random.shuffle(list)
print("Reshuffled list : ",list)
OUTPUT:
Reshuffled list : [16, 5, 10, 20]