当前位置:  开发笔记 > 编程语言 > 正文

在python中使用函数参数命名的列表

如何解决《在python中使用函数参数命名的列表》经验,为你挑选了1个好方法。

我觉得这可能是我应该知道的,但我现在想不到它.我正在尝试获取一个函数来构建一个列表,其中列表的名称是函数中给出的参数;

例如

def make_hand(deck, handname):
    handname = []
    for c in range(5):
        handname.append(deck.pop())
    return handname

    # deck being a list containing all the cards in a deck of cards earlier

问题在于,当我希望在创建手时用户输入的任何名称时,都会创建一个名为handname的列表.

有人可以帮忙吗?谢谢



1> Kiv..:

您可以保留一个字典,其中键是手的名称,值是列表.

然后你可以说字典[handname]来访问特定的手.沿着:

hands = {} # Create a new dictionary to hold the hands.
hands["flush"] = make_hand(deck) # Generate some hands using your function.
hands["straight"] = make_hand(deck) # Generate another hand with a different name.
print hands["flush"] # Access the hand later.

推荐阅读
路人甲
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有