标签: 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
由于