random module
The random module implements functions that make use of the
random method ??.
| Function | Use |
|---|---|
choices(iter, k) |
Randomly selects an item from iter k timesand returns the resulting choices as an array. |
randint(a, b) |
Returns a random integer in range [a, b]. |
sample(array, k) |
Randomly selects k unique items from array,and returns the resulting choices as an array. Also accepts slices. |
shuffle(array) |
Randomly shuffles array and returns the result.array must be of type Array. |