28.10.2021 Views

Python Tutorial ( PDFDrive )

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Random number with seed 10 : 0.57140259469

shuffle(lst)

Description

The method shuffle() randomizes the items of a list in place.

Syntax

Following is the syntax for shuffle() method:

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

• lst -- This could be a list or tuple.

Return Value

This method returns reshuffled list.

Example

The following example shows the usage of shuffle() method.

#!/usr/bin/python

import random

list = [20, 16, 10, 5];

random.shuffle(list)

print "Reshuffled list : ", list

random.shuffle(list)

print "Reshuffled list : ", list

Let us compile and run the above program, this will produce the following result:

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

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

uniform(x, y)

Description

The method uniform() returns a random float r, such that x is less than or equal to r and r is less than y.

TUTORIALS POINT

Simply Easy Learning

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!