menghasilkan daftar bilangan acak yang tidak diulangi Python

#This will return a list of 50 numbers selected from the range 0 to 999, without duplicates.
import random
random.sample(range(1000), 50)
Alien0w0