sample
(
sequence
,
k
)
Returns a list with `k` unique elements sampled from the given sequence.
This is known as 'sampling without replacement'.
sequence
A sequence of elements
k
The number of elements to sample
sample(['Lugano', 'Zürich', 'Genève'], k=2)
['Lugano', 'Zürich']
sample(['Lugano', 'Zürich', 'Genève'], k=3)
['Zürich', 'Genève', 'Lugano']
See also sample in the official documentation
PyTamaro is a project created by the Lugano Computing Education Research Lab at the Software Institute of USI
Privacy Policy • Platform Version ede3c94 (Fri, 23 May 2025 14:43:18 GMT)