Python generates 10 random numbers

silencement
Release: 2019-06-05 15:17:32
Original
33263 people have browsed it

This article mainly introduces the method of generating random numbers in Python. Friends in need can refer to it.

Python generates 10 random numbers

If you don’t understand the relationship between generating random numbers in Python and the most commonly used functions in the random module, the following article is about generating random numbers in Python I hope you will gain something from the relationship with the most commonly used functions in the random module. The following is the introduction of this article.

random.random() is used to generate a random number of character points within a specified range. One of the two parameters is the upper limit and the other is the lower limit. If a > b, generate a random number

n: a <= n <= b。如果 a <b, 则 b <= n <= a。
print random.uniform(10, 20)  
print random.uniform(20, 10)  
#---- 
#18.7356606526  
#12.5798298022  
random.randint
Copy after login

is used to generate an integer within the specified range. The parameter a is the lower limit, and the parameter b is the upper limit. Python generates random numbers

print random.randint(12, 20) #生成的随机数n: 12 <= n <= 20 
print random.randint(20, 20) #结果永远是20 
#print random.randint(20, 10) #该语句是错误的。
Copy after login

The lower limit must be less than the upper limit.

random.randrange

From the set within the specified range, incremented by the specified base, this article is a partial introduction to the application of python to generate random numbers.

Random integer:

>>> import random
>>> random.randint(0,99)
Copy after login

21

Randomly select an even number between 0 and 100:

>>> import random
>>> random.randrange(0, 101, 2)
Copy after login

42

Random floating point number:

>>> import random
>>> random.random()
Copy after login

0.85415370477785668

>>> random.uniform(1, 10)
Copy after login

5.4221167969800881

Random character:

>>> import random
>>> random.choice(&#39;abcdefg&#%^*f&#39;)
Copy after login

'd'

The above is the detailed content of Python generates 10 random numbers. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!