Python generates 10 random numbers
This article mainly introduces the method of generating random numbers in Python. Friends in need can refer to it.
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
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) #该语句是错误的。
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)
21
Randomly select an even number between 0 and 100:
>>> import random >>> random.randrange(0, 101, 2)
42
Random floating point number:
>>> import random >>> random.random()
0.85415370477785668
>>> random.uniform(1, 10)
5.4221167969800881
Random character:
>>> import random >>> random.choice('abcdefg&#%^*f')
'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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

When using Python's pandas library, how to copy whole columns between two DataFrames with different structures is a common problem. Suppose we have two Dats...

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

How does Uvicorn continuously listen for HTTP requests? Uvicorn is a lightweight web server based on ASGI. One of its core functions is to listen for HTTP requests and proceed...

Using python in Linux terminal...

Fastapi ...

Understanding the anti-crawling strategy of Investing.com Many people often try to crawl news data from Investing.com (https://cn.investing.com/news/latest-news)...
