python random from array 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: how to randomly choose from a list python
random.choice(name of list)
Example 3: choose random index from list python
import random
ahahfunny = ['ahah ', 'copy-', 'paste ', 'stack overflow',' go ', 'brrr']
print(ahahfunny[random.randint(0, 5)]
print(random.choice(ahahfunny))
Example 4: random.choice()
import random
l=[1,2,3,4,5,6,7,8,9,0]
random.choice(l)
print(l);