uniform() is a method specified in the random library in Python 3.
Nowadays, in general, day-day tasks, there’s always the need to generate random numbers in a range. Normal programming constructs require a method more than just one word to achieve this particular task. In python, there’s an inbuilt method, “uniform()” which performs this task with ease and using just the one word. This method is defined in “random” module
Syntax : uniform(int x, int y)
Parameters :
x Specifies the lower limit of the random number required to generate.
y Specifies the upper limit of the random number required to generate.
Returns : Returns the generated floating point random number between lower limit and upper limit
Code #1 : Code to generate float random number.
import random
a = 4
b = 9
print ( "The random number generated between 4 and 9 is : " , end = "")
print (random.uniform(a, b))
|
Output:
The random number generated between 4 and 9 is : 7.494931618830411
Application :
There are many possible applications that can be thought of this function, some of the notable being generating random numbers in casino games, for lottery or custom games.
Below is the game that decided the winner on the basis of closeness to a certain value.
Code #2 : Application of uniform() – A Game
import random, math
player1 = 4.50
player2 = 3.78
player3 = 6.54
winner = random.uniform( 2 , 9 )
diffa = math.fabs(winner - player1)
diffb = math.fabs(winner - player2)
diffc = math.fabs(winner - player3)
if (diffa < diffb and diffa < diffc):
print ( "The winner of game is : " , end = "")
print ( "Player1" )
if (diffb < diffc and diffb < diffa):
print ( "The winner of game is : " , end = "")
print ( "Player2" )
if (diffc < diffb and diffc < diffa):
print ( "The winner of game is : " , end = "")
print ( "Player3" )
|
Output:
The winner of game is : Player2
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
15 Oct, 2020
Like Article
Save Article