我想生成0-9之间的随机整数(包括两端),但我想确保它不会经常连续生成相同的数字。我打算使用randint
模块中的random
函数。但我不确定它是否会派上用场。 random.randint
生成相同数字的频率是多少次?
答案 0 :(得分:4)
为什么不包裹randint?
class MyRand(object):
def __init__(self):
self.last = None
def __call__(self):
r = random.randint(0, 9)
while r == self.last:
r = random.randint(0, 9)
self.last = r
return r
randint = MyRand()
x = randint()
y = randint()
...
答案 1 :(得分:3)
在the Python docs说 random 的情况下,除非另有说明(即所有可能的结果具有相同的概率),否则您可以认为它们是均匀随机的。(
为了生成没有生成连续数字的数字,最简单的选择是创建自己的生成器:
def random_non_repeating(min, max=None):
if not max:
min, max = 0, min
old = None
while True:
current = random.randint(min, max)
if not old == current:
old = current
yield current
答案 2 :(得分:2)
为避免重复,您可以使用这样的简单包装器(有关其工作方式的说明,请参阅Fisher–Yates):
def unique_random(choices):
while True:
r = random.randrange(len(choices) - 1) + 1
choices[0], choices[r] = choices[r], choices[0]
yield choices[0]
使用示例:
from itertools import islice
g = unique_random(range(10))
print list(islice(g, 100))
答案 3 :(得分:2)
这很容易在没有while循环的情况下完成。
next_random_number = (previous_random_number + random.randint(1,9)) % 10
答案 4 :(得分:-1)
list =[]
x=0
for i in range(0,10):
while x in list:
x=random.randint(500,1000)
list.append(x)
print sorted(list, key=int)