Python Random Module Common methods

Source: Internet
Author: User
The code is as follows:

Import Randomprint Random.random ()

Get a floating-point number less than 1

The code is as follows:

Import Randomrandom.randint (1,10)

Get an integer from 1 to 10

The code is as follows:

Import Randomprint random.uniform (0,2)

Gets a floating-point number greater than 0 and less than 2

The code is as follows:

Import Randomprint Random.randrange (1,10,4)

Get a random number from 1 to 10 step 4

The code is as follows:

Import Randoma=[1,2,3,4,5]random.choice (a)

Remove an element from List a randomly

The code is as follows:

Import Randoma=[1,2,3,4,5]random.shuffle (a)

To disrupt the order of elements in the list A

The code is as follows:

Import Randoma=[1,2,3,4,5]random.sample (a,3)

Remove 3 elements from List A in random order (one element can only be removed once, so the number of extracts cannot be greater than the number of elements contained in the list)

"Recommended"

1. A detailed description of the mathematical and random numbers in the Python standard library (math package, random package)

2. Example tutorial for Python random () function

3. Share an example tutorial on random (randomly generated numbers) in Python

4. Share Python Random example of a method that generates n random numbers that are not duplicated in a range

5. Python Random Module (get random number) common methods and use examples

6. Share a tutorial on how to generate random numbers in Python module

7. Python Module Learning: Random number generation

  • 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.