Python random number Generation method

Source: Internet
Author: User
Tags shuffle

Tagged with: int random program multiple random string cell comment fun

Suppose you have a relationship with a few of the most frequently used functions in Python and the random module. The following article is the relationship between Python generation random numbers and the most frequently used functions in the random module, and hopefully you will reap some of the benefits, as the following is an introduction to this article.

random.random () is used to generate

used to generate a random number of points within a specified range, and one of the two parameters is the upper limit. One is the lower limit.

Assuming a > B, a random number is generated

1 n:a <=n <=b.

Suppose a <b, then B <=n <=a.

1 2 3 4 5 6 printrandom.uniform (10,20) printrandom.uniform (20,10) #---- #18.7356606526 #12.5798298022 Random.randint

used to generate an integer within a specified range. The number A is the lower limit, and the number of references is the upper limit. Python generates random numbers

1 2 3 printrandom.randint (12,20) #生成的随机数n: <= n <= printrandom.randint (20,20) #结果永远是20 #print Random.randint (#该语句是错误的).

The lower limit must be less than the upper limit.

Random.randrange

from within the specified range. In the collection that increments by the specified cardinality, this article is a partial introduction to the Python-generated random number application.

Random integers:
>>> Import Random
>>> Random.randint (0,99)
+

Randomly select even numbers between 0 and 100:
>>> Import Random
>>> random.randrange (0, 101, 2)
the

Random floating point number:
>>> Import Random
>>> Random.random ()
0.85415370477785668
>>> random.uniform (1, 10)
5.4221167969800881

Random characters:
>>> Import Random
>>> random.choice (' abcdefg&#%^*f ')
' d '

Select a specific number of characters in more than one character:
>>> Import Random
Random.sample (' Abcdefghij ', 3)
[' A ', ' d ', ' B ']

Select a specific number of characters to form a new string in multiple characters:
>>> Import Random
>>> Import String
>>> String.Join (Random.sample ([' A ', ' B ', ' C ', ' d ', ' e ', ' f ', ' g ', ' h ', ' I ', ' J '], 3)). R
Eplace ("", "" ")
' FIH '

Randomly pick a string:
>>> Import Random
>>> random.choice ([' Apple ', ' pear ', ' peach ', ' orange ', ' Lemon '])
' Lemon '

Shuffle:
>>> Import Random
>>> items = [1, 2, 3, 4, 5, 6]
>>> random.shuffle (items)
>>> Items
[3, 2, 5, 6, 4, 1]

Python random number Generation method

Related Article

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.