Python Basics
Python Advanced
Python Useful References
Python Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Python Number uniform() Function
Description:
This function returns a random float r, such that x is less than or equal to r and r is less than y
Syntax:
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.
Parameters:
Here is the detail of parameters:
Return Value:
Reshuffled list.
Example:
#!/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
|
|
|
|