gpt4 book ai didi

python - 随机选择一个数字然后随机选择一个更大的数字python代码?

转载 作者:太空宇宙 更新时间:2023-11-04 09:55:19 25 4
gpt4 key购买 nike

我正在尝试为我的博士论文建立一个心理学实验。我对 python 很陌生。我正在寻找的是,我需要从数字列表中选择一个数字,然后再次选择一个数字,在一种情况下高于前一个,在另一种情况下低于前一个。

号码池的主要列表是:

digit = range(0,30)
if cong = 'yes':
## select a number for a variable d1 from digit and
## select another number for a variable d2 from digit which is higher than
## d1
else:
## select a number for a variable d1 from digit and
## select another number for variable d2 which is lower than d1

我已经尝试解决这个问题,但我想现在不是那个专家。如果有人能帮我解决这个问题,我将不胜感激。

PS:这是我的第一个问题,所以我现在很了解论坛参与的标准做法。

谢谢瓦萨尔

最佳答案

LO, HI = 0, 30
d1 = random.randint(LO + 1, HI - 1) # Select a number between 0 and 30, exclusive
if cong == 'yes':
d2 = random.randint(d1 + 1, HI) # Select a bigger number
else:
d2 = random.randint(LO, d1 - 1) # Select a smaller number

关于python - 随机选择一个数字然后随机选择一个更大的数字python代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46109739/

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