从Python中的变量名获取数组

时间:2017-08-15 11:38:50

标签: python

对python来说很新,并且无法解决(或找到)如何根据变量名检查数组。

例如:

type, options, callback

1 个答案:

答案 0 :(得分:4)

不要动态查找变量名称。这是一个主要的代码味道。使用词典。

lists = {
    'world': [],
    'town': []
}

type = 'world'
lists[type].append('test')