Lesson 031 —— random 模块
Posted arelive
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lesson 031 —— random 模块相关的知识,希望对你有一定的参考价值。
Lesson 031 —— random 模块
关于 random 模块的一些方法介绍。
random.random()
: 返回一个 (0, 1) 的浮点型随机数random.randint(a, b)
: 返回一个 [a, b] 的整型随机数random.randrange(a, b)
: 返回一个 [a, b) 的整型随机数random.choice(iter)
: 随机选择其中的一个值,iter 是可迭代对象,可以是列表、元组、字符串、集合等。random.sample(iter[, n])
: 与choice
;类似,随机选择其中n
个值。random.uniform(a, b)
: 随机选择 (a, b) 范围的浮点型随机数。random.shuffle(item)
: 将item
中的数据随机排列(即打乱)。
以上是关于Lesson 031 —— random 模块的主要内容,如果未能解决你的问题,请参考以下文章