random list in python code example

Example 1: python list of random values

# To create a list of random integer values:
import random
randomlist = random.sample(range(10, 30), 5)
# Output:
# [16, 19, 13, 18, 15]

# To create a list of random float numbers:
import numpy
random_float_array = numpy.random.uniform(75.5, 125.5, 2)
# Output:
# [107.50697835, 123.84889979]

Example 2: n random numbers python

>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]

Example 3: python random liste

import random

liste = ["world, HELLO !", "hello world !"]

N = random.choice(liste)

print(N)

Example 4: which function to use in random module for a list in python

random.choice

Example 5: python random generator from list

import random
n = random.random()
print(n)

Example 6: place a number randomly in a list python

offsetBiasSample = [randint(-10,10)/100 for i in range(10)]
offsetBias = choice(offsetBiasSample)
index_offsetBias = randint(0,len(oldBiases)-1)
oldBiases[index_offsetBias] = oldBiases[index_offsetBias] + offsetBias