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)
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)
python randomize list
import random
random.shuffle(list)
python random number
from random import randint
print(randint(1,3))
#Possible Outputs#
#1
#2
#3
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]
random.shuffle
import random
list = [20, 16, 10, 5]
random.shuffle(list)
print("Reshuffled list : ",list)
OUTPUT:
Reshuffled list : [16, 5, 10, 20]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us