Files
30-seconds-of-code/snippets/sample.md
2023-04-28 22:24:23 +03:00

347 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Random element in list snippet
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