How to generate non-repeated random values in Python

Source: Internet
Author: User
This article describes how to generate random values without duplicates in Python. The example analyzes the implementation skills of Python Algorithm Implementation and Python built-in method, which is very simple and practical, for more information about how to generate random values without repeating Python, see the example in this article. Share it with you for your reference. The specific analysis is as follows:

Here, random values that are not repeated are generated from the list.

The algorithm is implemented as follows:

Import randomtotal = 100li = [I for I in range (total)] res = [] num = 20for I in range (num): t = random. randint (I, total-1) res. append (li [t]) li [t], li [I] = li [I], li [t] print res

In fact, python has implemented this method:

Print random. sample (li, num)

I hope this article will help you with Python programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.