python如何随机组合词语_从组合中随机选择

在Python中,可以使用`random.sample`结合`itertools.combinations`生成随机组合。给出的代码示例分别适用于Python 2.x和3.x,它们从iterable中返回指定长度的随机组合。例如,代码会从`range(10)`中随机选取长度为3的组合。
摘要由CSDN通过智能技术生成

在^{}模块中,有一个从iterable返回随机组合的方法。下面是两个版本的代码,一个用于Python 2.x,一个用于Python 3.x——在这两种情况下,您都在使用generator,这意味着您没有在内存中创建一个大的iterable。

假设Python 2.xdef random_combination(iterable, r):

"Random selection from itertools.combinations(iterable, r)"

pool = tuple(iterable)

n = len(pool)

indices = sorted(random.sample(xrange(n), r))

return tuple(pool[i] for i in indices)

在您的情况下,这样做很简单:>>> import random

>>> def random_combination(iterable, r):

"Random selection from itertools.combinations(iterable, r)"

pool = tuple(iterable)

n = len(pool)

indices = sorted(random.sample(xrange(n), r))

return tuple(pool[i] for i in indices)

>>> n = 10

>>> m = 3

>>> print(random_combination(range(n), m))

(3, 5, 9) # Returns a random tuple with length 3 from the iterable range(10)

对于Python 3.x

在Python 3.x的情况下,您将xrange调用替换为range,但是用例仍然是相同的。def random_combination(iterable, r):

"Random selection from itertools.combinations(iterable, r)"

pool = tuple(iterable)

n = len(pool)

indices = sorted(random.sample(range(n), r))

return tuple(pool[i] for i in indices)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值