Files
30-seconds-of-code/snippets/sample.md
Isabelle Viktoria Maciohsek 19f636408c Make expertise a field
2022-03-01 20:27:27 +02:00

23 lines
365 B
Markdown

---
title: Random element in list
tags: list,random
expertise: beginner
firstSeen: 2019-08-20T16:02:37+03:00
lastUpdated: 2020-10-28T11:45:34+02:00
---
Returns a random element from a list.
- Use `random.choice()` to get a random element from `lst`.
```py
from random import choice
def sample(lst):
return choice(lst)
```
```py
sample([3, 7, 9, 11]) # 9
```