Sunday, March 4, 2018

Number shuffle() Method


Number shuffle() Method in Python 3:

Description
The shuffle() method randomizes the items of a list in place.
Syntax
Following is the syntax for the shuffle() method
shuffle (lst,[random])

Note: This function is not accessible directly, so we need to import the shuffle module and then we need to call this function using the random static object.
Parameters
· lst - This could be a list or tuple.
· random - This is an optional 0 argument function returning float between 0.0 -
1.0. Default is None.
Return Value
This method returns reshuffled list.
Example
The following example shows the usage of the shuffle() method.


When we run the above program, it produces the following result-