B)
The method seed() sets the integer starting value used in generating random numbers. Call this function before calling any other random module function.
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.
This method does not return any value.
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()
When we run above program, it produces following result:
Random number with seed 10 : 0.57140259469 Random number with seed 10 : 0.57140259469 Random number with seed 10 : 0.57140259469
If you want to explore more, visit our Python edu & tutorials section!
Below are some examples:
We’re thrilled to announce an exciting opportunity for you to win not one but two…
Acquiring practical skills is crucial for career advancement and personal growth. Education Ecosystem stands out…
Artificial Intelligence (AI) has been making significant strides in various industries, and the software development…
Another week to bring you the top yield platforms for three of the most prominent…
If you hold a large volume of LEDU tokens above 1 million units and wish…
It’s another week and like always we have to explore the top yield platforms for…