如何在一行中构建一个词典:

时间:2015-10-22 07:53:31

标签: python dictionary set

我想在一行中编写这个python dictionnary。另外,将它写在一行中是否更有效,或者在我写到目前为止留下它为什么?这是我的代码:

def buildDic(df):
    dic = {}
    hashSet = set(['aa','bb','cc','dd','aa'])
    for hashs in hashSet :
        dic[hashs]=0
    return dic

由于

0 个答案:

没有答案