Is there a Python equivalent to R's sample() function?
15:11 03 Dec 2015

I want to know if Python has an equivalent to the sample() function in R.

The sample() function takes a sample of the specified size from the elements of x using either with or without replacement.

The syntax is:

sample(x, size, replace = FALSE, prob = NULL)

(More information here)

python r probability