262 B
262 B
title, tags
| title | tags |
|---|---|
| sample | list,random,beginner |
Returns a random element from a list.
- Use
random.choice()to get a random element fromlst.
from random import choice
def sample(lst):
return choice(lst)
sample([3, 7, 9, 11]) # 9