Python Basics
Python Advanced
Python Useful References
Python Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Python Number shuffle() Function
Description:
This function randomizes the items of a list in place.
Syntax:
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]
|
|
|
|