randomly take out an item in a list python code example
Example 1: how to randomly choose from a list python
random.choice(name of list)
Example 2: 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