how to get a random value from a list in python code example
Example 1: how to get a random element from an array in python
import random
names=['Mark', 'Sam', 'Henry']
random_array_item=random.choice(names)
print(random_array_item)
for j in range(names):
print(random.choice(names))
Example 2: python choose random element from list
import random
random.choice(list)
random.choices(list, k = 4)
random.sample(list, 4)
Example 3: how to print a random part of a list in python
import random
foo = ['a', 'b', 'c', 'd', 'e']
print(random.choice(foo))
Example 4: how to randomly choose from a list python
random.choice(name of list)
Example 5: sample 1 item from array python
import random
cakes = ['lemon', 'strawberry', 'chocolate']
random.choice(cakes)
Example 6: pick a random number from a list in python
import random
numberList = [1,2,3,4,5]
print(random.choice(numberList))