Copyright © tutorialspoint.com
This function returns a random float r, such that x is less than or equal to r and r is less than y
uniform(x, y) |
Note: This function is not accessible directly so we need to import uniform module and then we need to call this function using random static object.
Here is the detail of parameters:
x: Sets the lower limit of the random float
y: Sets the upper limit of the random float
Reshuffled list.
#!/usr/bin/python import random print "Random Float uniform(5, 10) : ", random.uniform(5, 10) print "Random Float uniform(7, 14) : ", random.uniform(7, 14) |
This will produce following result:
Random Float uniform(5, 10) : 5.52615217015 Random Float uniform(7, 14) : 12.5326369199 |
Copyright © tutorialspoint.com