Files
30-seconds-of-code/snippets/sample.md
Isabelle Viktoria Maciohsek 0f3e0f9ed0 Update snippet titles
2022-02-13 14:41:40 +02:00

354 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
Random element in list list,random,beginner 2019-08-20T16:02:37+03:00 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