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
If you wish to ensure that the numbers being added are unique, you could use a Set object
if using 2.7 or greater, or import the sets module if not.
As others have mentioned, this means the numbers are not truly random.