Sample Array

Get N random items from an array without replacement.

Code

General
import random
return random.sample(arr, n)

Parameters

Array

Number of items to sample

Server

More Python Snippets