我想要做的是随机生成等于给定数字的两个数字。但是,为了让它获得所需的答案,我希望它是随机的。那就是问题所在。
a=(1,2,3,4,5,6,7,8,9,)
from random import choice
b=choice(a)
c=choice(b)
d= c+b
if d == 10:
#then run the rest of the program with the value's c and b in it
#probably something like sys.exit goes here but I am not sure to end \/
else:
# i have tryied a few things here but I am not sure what will loop it around*
(感谢帮助:D)
我知道创建了一个名为'right'的列表,并且知道尝试将值a和b附加到列表中,但仍无法正常工作。因为我知道运行程序'in range(100)']中的线索,所以我得到了答案。但是,这些值未添加到新列表权限中。这是问题所在。然后我要做的是从列表中正确读取值0和1,然后使用它们(对不起,在学校做得不好)这是不添加到给定变量的分数。这是第二位,但是是。
import sys
right=(0)
y=x+x
from trail in range(y)
a=(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20)
from random import choice
A=choice(a)
B=choice(a)
d=A/B
if d==1:
right.append(A)
right.append(B)
else:
x.append(1)
我想要做的是随机生成等于给定数字的两个数字。但是,为了让它获得所需的答案,我希望它是随机的。那就是问题所在。 a =(1,2,3,4,5,6,7,8,...
from random import choice
a = range(1, 10)
b = c = 0
while b + c != 10:
b = choice(a)
c = choice(a) # You meant choice(a) here, right?
也许我错过了要点,但是没有必要循环选择两个相加的随机数。 randint和简单的减法即可完成工作:
这符合you