I tried using random.randint(0, 100), but some numbers were the same. Is there a method/module to create a list unique random numbers?
random.randint(0, 100)
Note: The fol
You can first create a list of numbers from a to b, where a and b are respectively the smallest and greatest numbers in your list, then shuffle it with Fisher-Yates algorithm or using the Python's random.shuffle method.
a
b