Files
30-seconds-of-code/python/s/sample.md
Angelos Chalaris 5c913d20bd Reorganize snippets
2023-05-03 21:19:02 +03:00

364 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Random element in list snippet python
list
random
walking-on-top 2020-10-28T11:45:34+02:00

Returns a random element from a list.

  • Use random.choice() to get a random element from lst.
from random import choice

def sample(lst):
  return choice(lst)
sample([3, 7, 9, 11]) # 9