如何从列表中获取值并将其分配给变量

时间:2014-03-13 17:03:43

标签: python python-3.x

只是想知道如何从卷列表中获取值并将其分配给变量以在我的其余代码中使用。

import random

def dice_roll(number):
    if number == 12:
        number = random.randint(1,12)
        print(number)
        return number
    elif number == 6:
        number = random.randint(1,6)
        print(number)
        return number
    else:
        number == 4
        number = random.randint(1,4)
        print(number)
        return number

print("12 sided")
print("6 sided")
print("4 sided")

rolls = {4: [], 6: [], 12: []} # dictionary to hold rolls
while True:
    roll = int(input("Which dice would you like to roll? --> ")) # store die size
    rolls[roll].append(dice_roll(roll)) # roll and add to dictionary
    doRepeat=input("Go again? --> ")
    if doRepeat == "no":
        break 
    print(rolls)

1 个答案:

答案 0 :(得分:1)

死了@ user3119844。

我认为你的问题有点奇怪,因为它与目前的代码不一致。

通过代码,你似乎是一个相当熟练的python程序员。所以要么我没有理解这个问题,要么就是很奇怪。

尽管如此,在我看来,roll字典包含3个列表(与3个不同的骰子相关),每个列表包含一些值。在python中,您使用[]的(括号)按索引访问值。所以选择一个变量名,例如v,然后:

v=rolls[diceNumber][rollIndex]

其中diceNumber为4,6或12,而rollIndex是您感兴趣的第n卷的编号。

希望有所帮助