Predictive Hacks

How to pick randomly an item from a list in Python

Assume that your list is the:

my_list = ['a', 'b', 'c', 'd', 'e']

And you want to pick an item randomly. The you can use the choice from numpy:

import numpy as np
np.random.choice(my_list, size=1, replace=True)
'c'

Note that we can pick more elements (size) with or without replacement (replace)

Share This Post

Share on facebook
Share on linkedin
Share on twitter
Share on email

Subscribe To Our Newsletter

Get updates and learn from the best

More To Explore

Python

Image Captioning with HuggingFace

Image captioning with AI is a fascinating application of artificial intelligence (AI) that involves generating textual descriptions for images automatically.