The code is as follows:
Import Randomprint Random.random ()
Get a floating-point number less than 1
The code is as follows:
Import Randomrandom.randint (1,10)
Get an integer from 1 to 10
The code is as follows:
Import Randomprint random.uniform (0,2)
Gets a floating-point number greater than 0 and less than 2
The code is as follows:
Import Randomprint Random.randrange (1,10,4)
Get a random number from 1 to 10 step 4
The code is as follows:
Import Randoma=[1,2,3,4,5]random.choice (a)
Remove an element from List a randomly
The code is as follows:
Import Randoma=[1,2,3,4,5]random.shuffle (a)
To disrupt the order of elements in the list A
The code is as follows:
Import Randoma=[1,2,3,4,5]random.sample (a,3)
Remove 3 elements from List A in random order (one element can only be removed once, so the number of extracts cannot be greater than the number of elements contained in the list)
"Recommended"
1. A detailed description of the mathematical and random numbers in the Python standard library (math package, random package)
2. Example tutorial for Python random () function
3. Share an example tutorial on random (randomly generated numbers) in Python
4. Share Python Random example of a method that generates n random numbers that are not duplicated in a range
5. Python Random Module (get random number) common methods and use examples
6. Share a tutorial on how to generate random numbers in Python module
7. Python Module Learning: Random number generation