How do I create a list of random numbers without duplicates?

前端 未结 17 2442
灰色年华
灰色年华 2020-11-22 13:30

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?

Note: The fol

17条回答
  •  庸人自扰
    2020-11-22 13:34

    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.

提交回复
热议问题