python如何随机组合词语_从组合中随机选择
在^{}模块中,有⼀个从iterable返回随机组合的⽅法。下⾯是两个版本的代码,⼀个⽤于Python 2.x,⼀个⽤于Python 3.x——在这两种情况下,您都在使⽤generator,这意味着您没有在内存中创建⼀个⼤的iterable。
假设Python 2.xdef random_combination(iterable, r):
"Random selection from itertoolsbinations(iterable, r)"
pool = tuple(iterable)
n = len(pool)
indices = sorted(random.sample(xrange(n), r))
return tuple(pool[i] for i in indices)
在您的情况下,这样做很简单:>>> import randomrandom python
>>> def random_combination(iterable, r):
"Random selection from itertoolsbinations(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 itertoolsbinations(iterable, r)"
pool = tuple(iterable)
n = len(pool)
indices = sorted(random.sample(range(n), r))
return tuple(pool[i] for i in indices)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。