Python aleatório mais de um número de amostra sem substituição

>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]
CodeHunter