random 模块

Posted infaaf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了random 模块相关的知识,希望对你有一定的参考价值。

 

>>> import random
>>> random.random()
0.42936489785928167
>>> random.randint(1,3)    #包含3
1
>>> random.randrange(1,3)  # 不包含3
1
>>> random.choice([2,3,4,5])
3
>>> random.sample([2,3,4,5,6,7],3)
[5, 3, 2]


>>> string.digits
0123456789
>>> string.ascii_letters
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
>>> string.hexdigits
0123456789abcdefABCDEF

>>> string.ascii_lowercase + string.digits
abcdefghijklmnopqrstuvwxyz0123456789
>>> 
>>> s=string.ascii_lowercase + string.digits
>>> random.sample(s,5)
[5, w, v, q, i]
>>> 

 

洗牌

>>> l=[1,2,3,4]
>>> random.shuffle(l)
>>> l
[1, 2, 4, 3]
>>> 

 

以上是关于random 模块的主要内容,如果未能解决你的问题,请参考以下文章

简述模块-random

使用import导入random模块。使用该模块下的random()函数,生成一个0到1之间的?

如何使用模块化代码片段中的LeakCanary检测内存泄漏?

PHP 代码片段

python常用模块(模块和包的解释,time模块,sys模块,random模块,os模块,json和pickle序列化模块)

22 初始模块 random time collections functools