Snippets tagged “sample”
2 snippets use this tag.
- How can I randomly select an item from a list?Python
You can use the random module's choice function to select a random element from a list.
- Shuffling a list of objectsPython
The random module in Python provides a function called shuffle() which can be used to shuffle the elements of a list.