python-random模块

Posted 郭东东郭

tags:

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

import random

>>> random.randrange(1,10) #返回1-10之间的一个随机数,不包括10
>>> random.randint(1,10) #返回1-10之间的一个随机数,包括10

>>> random.randrange(0, 100, 2) #随机选取0到100间的偶数

>>> random.random()  #返回一个随机浮点数
>>> random.choice(‘abce3#[email protected]‘) #返回一个给定数据集合中的随机字符
‘#‘

>>> random.sample(‘abcdefghij‘,3)  #从多个字符中选取特定数量的字符
[‘a‘, ‘d‘, ‘b‘]

import string

>>> string.ascii_letters
‘abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ‘
>>> string.digits
‘0123456789‘
>>> string.ascii_lowercase
‘abcdefghijklmnopqrstuvwxyz‘
>>> string.ascii_uppercase
‘ABCDEFGHIJKLMNOPQRSTUVWXYZ‘

生成随机字符串

>>> import string
>>> ‘‘.join(random.sample(string.ascii_lowercase+string.digits,5))
‘l1r0p‘
>>> ‘‘.join(random.sample(string.ascii_lowercase+string.digits,5))
‘8vm42‘

洗牌

>>> a =list(range(10))
>>> a
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> random.shuffle(a)
>>> a
[1, 0, 4, 8, 3, 6, 9, 5, 7, 2]
>>>

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

Python-random模块

python-random模块

python-random模块

python-random模块

python-random随机数

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