1

我正在尝试重新掷出多个骰子,并且每次都要记住上一次重新掷出的骰子。因此,例如,如果我掷出 5 个骰子并得到 1、2、3、4、5。我问你要重掷哪个骰子——1、3、4,然后得到类似 3、2、5、3、5 的东西。但正如我在循环中询问的那样,它会覆盖以前的新卷,只给出最后一个。在循环运行时如何存储新找到的数字?

reroll1 = input("Would you like to reroll? Yes or No: ")
if reroll1 == "Yes" or "yes":
count = 0
times = int(input("How many die would you like to reroll? "))
while count < times:
    whichreroll = input("Reroll die: ")
    if whichreroll == "1":
        reroll1 = random.randint(1,6)
    else:
        reroll1 = die1
    if whichreroll == "2":
        reroll2 = random.randint(1,6)
    else:
        reroll2 = die2
    if whichreroll == "3":
        reroll3 = random.randint(1,6)
    else:
        reroll3 = die3
    if whichreroll == "4":
        reroll4 = random.randint(1,6)
    else:
        reroll4 = die4
    if whichreroll == "5":
        reroll5 = random.randint(1,6)
    else:
        reroll5 = die5
    newset = [reroll1, reroll2, reroll3,reroll4,reroll5]

    count += 1
    print(newset)   
4

2 回答 2

0

您可以通过循环掷骰子块而不是使用所有这些 if 语句来清理很多东西。这是通过使用选择的骰子来索引现有的骰子列表来完成的。我假设您已经有一个包含原始骰子的列表,所以我只制作了一个并复制到 newset。

oldset = [1,2,3,4,5]
reroll1 = str(raw_input("Would you like to reroll? Yes or No: "))
if reroll1.lower() == "yes":
    count = 0
    times = int(input("How many die would you like to reroll? "))
    newset = oldset

    while count < times:
        whichreroll = input("Reroll die: ")
        reroll = random.randint(1,6)
        newset[whichreroll-1]= reroll
        count += 1
        print(newset)  
于 2013-04-07T22:30:56.247 回答
0

如果我的问题是正确的,您可以通过拥有两组列表来简单地做到这一点,一组是您已经拥有的列表,另一组是 prevSet。prevSet 存储结果的最后一个值,所以基本上你可以在每次迭代开始时初始化 prevSet,这样它就可以

while (count < times):
    prevSet = newset 
    .
    .
    .
于 2013-04-07T22:31:05.197 回答