Home > Article > Backend Development > Detailed explanation of python's random module
import random
random.random() #Generate a random floating point number between 0 and 1.
random.randint(start, end) #Generate a random integer within the specified range.
For example, random.randint(1,10), the minimum is 1, the maximum is less than or equal to 10.
random.randrange(start, end) #Generate within the specified range of random integers.
ramdom.randrange(1,10) The minimum is 1 and the maximum is less than 10
random.choice(sequence) Randomly returns an element in the sequence.
random.sample (sequence, randomly take several elements from the sequence at the same time) is used to specify to return multiple elements from this sequence at the same time. The difference between
and choice is that choice can only return one element randomly, while sample can return n elements at the same time.
random.uniform (start range, end range) is used to get a floating point number in a specified range.
random.shuffle(sequence) is used to disrupt the order of elements in a sequence (this function will directly modify the original sequence.)
The above is the detailed content of Detailed explanation of python's random module. For more information, please follow other related articles on the PHP Chinese website!