真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python中怎么使用random模塊

這篇文章運(yùn)用簡(jiǎn)單易懂的例子給大家介紹Python中怎么使用random模塊,代碼非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

月湖網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)建站,月湖網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為月湖上千余家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的月湖做網(wǎng)站的公司定做!

python的random模塊

random模塊是python中一個(gè)生成隨機(jī)數(shù)的模塊。

random不是python解釋器內(nèi)置的模塊。

導(dǎo)入random模塊的方法是:

import random

如果只使用random模塊中的單個(gè)方法的話,也可以使用

from random import method_name

例如:

我只想生成一個(gè)10以內(nèi)的隨機(jī)的整數(shù),不需要random模塊的別的方法的時(shí)候,也可以使用以下命令

from random import randint
random.randint(0,10)

查看random模塊的內(nèi)置方法可以使用以下命令:

dir(random)

其中常用的方法有下面幾個(gè):

choice

#從一個(gè)非空列表中隨機(jī)選擇一個(gè)元素
>Choose a random element from a non-empty sequence.
>>> random.choice([1,3,5,7])
1
>>> random.choice([1,3,5,7])
3

randint

#從a和b(包括b)的范圍內(nèi)隨機(jī)生成一個(gè)整數(shù)
>Return random integer in range [a, b], including both end points.
>>> random.randint(0,9)
8
>>> random.randint(0,9)
0
>>> random.randint(0,9)
4
>>> random.randint(0,9)
3

random

#生成一個(gè)0(包括0)到1內(nèi)的浮點(diǎn)數(shù)
>random() -> x in the interval [0, 1).
>>> random.random()
0.3898009217264272
>>> random.random()
0.897328889551127
>>> random.random()
0.9899842422616898

randrange

#在指定范圍內(nèi)隨機(jī)生成一個(gè)整數(shù)
> Choose a random item from range(start, stop[, step]).
This fixes the problem with randint() which includes the
endpoint; in Python this is usually not what you want.
>>> random.randrange(100,200)
156
>>> random.randrange(100,200)
133
>>> random.randrange(10,20)
11
>>> random.randrange(10,20)
15

sample

#從一個(gè)列表或集合中隨機(jī)選擇多個(gè)元素
>Chooses k unique random elements from a population sequence or set.
>>> random.sample([23,[1,2,3],"aa","yy"],2)
['aa', 23]
>>> random.sample([23,[1,2,3],"aa","yy"],3)
['aa', [1, 2, 3], 23]

shuffle

#把一個(gè)列表內(nèi)元素的順序打亂,列表的內(nèi)存地址不變
>Shuffle list x in place, and return None.
>>> l1=[1,"a",3,5,"b","c"]
>>> id(l1)
140436582171208
>>> random.shuffle(l1)
>>> print(l1)
[1, 'b', 'a', 'c', 3, 5]
>>> id(l1)
140436582171208

uniform

    #在指定范圍內(nèi)隨機(jī)生成一個(gè)浮點(diǎn)數(shù)
>Get a random number in the range [a, b) or [a, b] depending on rounding.
>>> random.uniform(12,33)
27.02416276339153
>>> random.uniform(12,33)
13.832414985007832
>>> random.uniform(12,33)
12.827493699496461

現(xiàn)在想生成一個(gè)5位包含大小寫和數(shù)字的隨機(jī)驗(yàn)證碼,代碼如下:

import random
def random_code():
    random_str = ""
    for i in range(5):
        #隨機(jī)選擇一個(gè)整數(shù)
        num=random.randint(0,9)
        #生成一個(gè)大寫字母
        upper=chr(random.randint(65,90))
        #生成一個(gè)小寫字母
        lower=chr(random.randint(97,122))
        #每次從大小寫字母中隨機(jī)選擇一位
        res=random.choice([str(num),upper,lower])
        random_str+=res
    return random_str
print(random_code())

運(yùn)行5次這個(gè)程序,生成的驗(yàn)證碼如下:

KwlTN
t1Pag
294l6
t1Pag
294l6

關(guān)于Python中怎么使用random模塊就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。


分享名稱:Python中怎么使用random模塊
文章轉(zhuǎn)載:http://weahome.cn/article/jssosc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部