random list in python code example
Example 1: python list of random values
import random
randomlist = random.sample(range(10, 30), 5)
import numpy
random_float_array = numpy.random.uniform(75.5, 125.5, 2)
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