random模块
Posted hades123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了random模块相关的知识,希望对你有一定的参考价值。
random模块
random模块一般用来生成随机数
random.random()
随机生成(0,1)之间的小数,不包括0和1
import random
print(random.random())
0.8451293863872781
random.randint()
随机生成[1,10]之间的整数,包括1和10
print(random.randint(1,10))
2
random.randrange()
随机生成(1,10)之间的整数,包括1但不包括10
print(random.randrange(1,10))
6
random.uniform()
随机打印(1,4)之间的小数,不包括1和4
print(random.uniform(1,4))
1.442046447081124
random.choice()
随机打印列表元素中的元素
lis = [1,2,3,'a','f']
print(random.choice(lis))
f
random.sample()
随机打印列表元素中的n个元素
print(random.sample(lis,2))
[1, 3]
random.shuffle()
打乱顺序
lis = [1,2,3,4,6,8,5,7,0]
lis.sort()
print(lis)
random.shuffle(lis)
print(lis)
[0, 1, 2, 3, 4, 5, 6, 7, 8]
[7, 0, 8, 1, 6, 2, 5, 3, 4]
以上是关于random模块的主要内容,如果未能解决你的问题,请参考以下文章
使用import导入random模块。使用该模块下的random()函数,生成一个0到1之间的?
如何使用模块化代码片段中的LeakCanary检测内存泄漏?
python常用模块(模块和包的解释,time模块,sys模块,random模块,os模块,json和pickle序列化模块)