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.

seed([x])

Description

The method seed() sets the integer starting value used in generating random numbers. Call this function before

calling any other random module function.

Syntax

Following is the syntax for seed() method:

seed ( [x] )

Note: This function is not accessible directly, so we need to import seed module and then we need to call this

function using random static object.

Parameters

• x -- This is the seed for the next random number. If omitted,s then it takes system time to generate next

random number.

Return Value

This method does not return any value.

Example

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

#!/usr/bin/python

import random

random.seed( 10 )

print "Random number with seed 10 : ", random.random()

# It will generate same random number

random.seed( 10 )

print "Random number with seed 10 : ", random.random()

# It will generate same random number

random.seed( 10 )

print "Random number with seed 10 : ", random.random()

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

Random number with seed 10 : 0.57140259469

Random number with seed 10 : 0.57140259469

TUTORIALS POINT

Simply Easy Learning

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

Saved successfully!

Ooh no, something went wrong!