Answers for "Which function in random module is used to shuffle the order of items in a list?"

30

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)
Posted by: Guest on January-05-2020

Code answers related to "Which function in random module is used to shuffle the order of items in a list?"

Python Answers by Framework

Browse Popular Code Answers by Language