Computer Science, asked by ilayacheliyan1191, 9 months ago

Describe Random numbers function in Python with example.

Answers

Answered by humera98765
0

Answer:

choice() :- This function is used to generate 1 random number from a container.

2. randrange(beg, end, step) :- This function is also used to generate random number but within a range specified in its arguments. This function takes 3 arguments, beginning number (included in generation), last number (excluded in generation) and step ( to skip numbers in range while selecting).

Answered by letmeanswer12
1

Random() function generates a random float number between 0 and 1

Explanation:

Python describes a set of functions used to generate random numbers or to manipulate those. In Python, Random Number Generator is built-in functions used to generate numbers as and when necessary. Those functions are built into Python's random module.

The random() function generates a float random number less than 1 and also greater than or equal to 0.

Example:

  • print ("A random number value between 0 to 1 is ", end="")
  • print (random.random())

Output:

  • A random number value between 0 to 1 is 0.42487645546

Similar questions