Python中处理随机数(干货)

简介: Python中处理随机数(干货)

阅读本文需要3.5分钟


关于在Python中处理随机性的概述,只使用标准库和CPython本身中内置的功能。


在0.0和1.0之间生成随机浮点数


这个random.random()函数在间隔[0.0,1.0]中返回一个随机浮点。这意味着返回的随机数总是小于右端点(1.0).这也被称为半开放范围:

>>> import random
>>> random.random()
0.11981376476232541
>>> random.random()
0.757859420322092
>>> random.random()
0.7384012347073081

xy

这是如何在Python中的两个端点之间生成一个随机整数的方法。random.randint()功能。这跨越了整个[x,y]间隔,可能包括两个端点:

>>> import random
>>> random.randint(1, 10)
10
>>> random.randint(1, 10)
3
>>> random.randint(1, 10)
7

带着random.randrange()函数可以排除间隔的右侧,这意味着生成的数字总是位于[x,y]内,并且它总是小于右侧的端点:

>>> import random
>>> random.randrange(1, 10)
5
>>> random.randrange(1, 10)
3
>>> random.randrange(1, 10)
4

产生随机浮动xy

如果需要生成位于特定[x,y]间隔内的随机浮点数,则可以使用random.uniform

>>> import random
>>> random.uniform(1, 10)
7.850184644194309
>>> random.uniform(1, 10)
4.00388600011348
>>> random.uniform(1, 10)
6.888959882650279

从列表中选择随机元素

要从非空序列(如列表或元组)中选择一个随机元素,可以使用Python的random.choice

>>> import random
>>> items = ['one', 'two', 'three', 'four', 'five']
>>> random.choice(items)
'five'
>>> random.choice(items)
'one'
>>> random.choice(items)
'four'

这适用于任何非空序列,如果序列为空,则会出现异常。


随机化元素列表


可以使用random.shuffle。这将修改序列对象,并将元素的顺序随机化:

>>> import random
>>> items = ['one', 'two', 'three', 'four', 'five']
>>> random.shuffle(items)
>>> items
['four', 'one', 'five', 'three', 'two']

如果你不想修改原本的,你需要先复制一份,然后在随机。属性创建Python对象的副本。copy模块。

采摘n元素列表中的随机样本

随机抽样n序列中的唯一元素,使用random.sample。它执行随机抽样而不进行替换:

>>> import random
>>> items = ['one', 'two', 'three', 'four', 'five']
>>> random.sample(items, 3)
['one', 'five', 'two']
>>> random.sample(items, 3)
['five', 'four', 'two']
>>> random.sample(items, 3)
['three', 'two', 'five']

生成密码安全随机数

如果出于安全目的需要加密安全随机数,使用random.SystemRandom它使用加密安全的伪随机数生成器。

实例SystemRandom类的函数提供大多数随机数生成器操作。

下面是一个例子:

>>> import random
>>> rand_gen = random.SystemRandom()
>>> rand_gen.random()
0.6112441459034399
>>> rand_gen.randint(1, 10)
2
>>> rand_gen.randrange(1, 10)
5
>>> rand_gen.uniform(1, 10)
8.42357365980016
>>> rand_gen.choice('abcdefghijklmn')
'j'
>>> items = ['one', 'two', 'three', 'four', 'five']
>>> rand_gen.shuffle(items)
>>> items
['two', 'four', 'three', 'one', 'five']
>>> rand_gen.sample('abcdefghijklmn', 3)
['g', 'e', 'c']

注意SystemRandom并不保证在所有运行Python的系统上都可用

Python 3.6+-secrets模块:

如果您正在使用Python 3,并且你的目标是生成加密安全的随机数,那么一定要检查secrets模块。这个模块可以在Python3.6(及以上)标准库中获得。这使得安全令牌的生成变得很方便。

以下是几个例子:

>>> import secrets
# 生成安全令牌:
>>> secrets.token_bytes(16)
b'\xc4\xf4\xac\x9e\x07\xb2\xdc\x07\x87\xc8 \xdf\x17\x85^{'
>>> secrets.token_hex(16)
'a20f016e133a2517414e0faf3ce4328f'
>>> secrets.token_urlsafe(16)
'eEFup5t7vIsoehe6GZyM8Q'
# 从序列中随机选择一个元素:
>>> secrets.choice('abcdefghij')
'h'
# Securely compare two strings for equality
# (Reduces the risk of timing attacks):
>>> secrets.compare_digest('abcdefghij', '123456789')
False
>>> secrets.compare_digest('123456789', '123456789')
True

您可以了解更多关于secrets模块在Python 3文档中.



推荐阅读

做个Python反转字符串的实验

列表推导到zip()函数的五种技巧

Python怎么删除字符

岁月有你   惜惜相处

相关文章
|
6月前
|
数据采集 存储 测试技术
Python生成随机数插件Faker的用法
Python生成随机数插件Faker的用法
176 0
|
1月前
|
算法 Go Python
获取指定范围符合正态分布的随机数Go/Python
获取指定范围符合正态分布的随机数Go/Python
33 0
|
算法 安全 量子技术
【Python】蒙特卡洛模拟 | PRNG 伪随机数发生器 | 马特赛特旋转算法 | LCG 线性同余算法 | Python Random 模块
【Python】蒙特卡洛模拟 | PRNG 伪随机数发生器 | 马特赛特旋转算法 | LCG 线性同余算法 | Python Random 模块
342 0
|
28天前
|
数据可视化 数据挖掘 Python
生成100个随机数python并绘制成柱子
通过上述步骤,我们不仅实践了Python编程的基本技巧,如模块导入、列表推导式、循环打印,还踏上了数据可视化的第一步。这样的实践不仅增进了对随机数生成机制的理解,也为数据分析和可视化打下了坚实基础。记住,每一次代码的跳跃,都是向数据科学殿堂迈进的一步。
37 0
|
3月前
|
算法 安全 Linux
如何在 Python 中生成随机数
【8月更文挑战第29天】
165 6
|
5月前
|
Python
python之数值计算、math库、随机数
python之数值计算、math库、随机数
|
6月前
|
Python
【Python进阶(六)】——随机数与数组
【Python进阶(六)】——随机数与数组
|
6月前
|
资源调度 Python
python 产生随机数
【4月更文挑战第19天】python 产生随机数
40 1
|
6月前
|
资源调度 Python
|
6月前
|
Python
Python random模块(获取随机数)常用方法和使用例子
`random`模块在Python中用于生成随机数。
64 0