Copyright © tutorialspoint.com

Python Number shuffle() Function

previous next


Description:

This function randomizes the items of a list in place.

Syntax:

shuffle (lst )

Note: This function is not accessible directly so we need to import shuffle module and then we need to call this function using random static object.

Parameters:

Here is the detail of parameters:

Return Value:

Reshuffled list.

Example:

#!/usr/bin/python
import random

list = [20, 16, 10, 5];
random.shuffle(list)
print "Reshuffled list : ",  list

random.shuffle(list)
print "Reshuffled list : ",  list

This will produce following result:

Reshuffled list :  [16, 5, 10, 20]
Reshuffled list :  [16, 5, 20, 10]

previous next

Copyright © tutorialspoint.com