gpt4 book ai didi

python - random.randint 多久生成一次相同的数字?

转载 作者:太空宇宙 更新时间:2023-11-04 07:03:05 26 4
gpt4 key购买 nike

我想生成 0-9 之间的随机整数(包括两端),但我想确保它不会经常连续生成相同的数字。我计划使用 random 模块中的 randint 函数。但我不确定它是否会派上用场。 random.randint 多久生成一次相同的数字?

最佳答案

为什么不包装 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()
...

关于python - random.randint 多久生成一次相同的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11097862/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com