Python random模块

Posted Harris-H

tags:

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

Python random模块

import random as rd
import string

if __name__ == '__main__':
    print(rd.random())  # [0,1) 浮点数
    print(rd.randint(1, 10))  # [1,10] 整数
    print(rd.uniform(1, 5))  # [1,5] 浮点数
    l = ['小明', '小红', '小何', '小张']
    print(rd.choice(l))  # 随机从序列中选取一个
    print(rd.randrange(1, 10, 2))  # (start,end,step)  [1,10) 选奇数
    print(rd.sample('abcdefg', 3))  # 从序列中选取3个不同的list, tuple, 字符串都属于sequence。   返回列表
    a = [1, 2, 3, 4, 5]  # 随机打乱
    rd.shuffle(a)
    print(a)
    # 从a-zA-Z0-9生成指定数量的随机字符:
    ran_str = ''.join(rd.sample(string.ascii_letters + string.digits, 8))
    print(ran_str)
    # 参考 https://www.runoob.com/python/func-number-random.html

输出结果

0.6587460808860645
4
2.440356288443773
小红
7
['a', 'g', 'f']
[4, 2, 3, 5, 1]
GcOEf0Aa

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

python之路---22 初始模块 random time collections functools

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

如何在 python 中并行化以下代码片段?

python 常用模块之random,os,sys 模块

python的random模块函数分析

Python 常用模块 -- collections模块,time模块,random模块,os模块,sys模块