1

現在、辞書を任意の深いキー (mongo など) でソートできるようにするコードがありますが、キーの深さをハードコーディングする必要があります。

#This is the code for inside the function, you need to make a function to receive the  arguments
#and the dictionary. the arguments should be listed in order of layers. It then splits the argument string
#at the "." and assigns to each of the items.From there it should return the "l[]".
#you need to set it up to pass the arguments to these appropriate spots. so the list of dicts goes to
#list and the arguments go to argstring and it should be taken care of from there.


#splitting the argument
argstring="author.age"
arglist = argstring.split(".")

x=(5-len(arglist))#need to set this number to be the most you want to accept
while x>0:
    arglist.append('')
    x-=1

#test list
list = [
{'author' : {'name':'JKRowling','age':47,'bestseller':{'series':'harrypotter','copiessold':12345}}},


{'author' : {'name':'Tolkien','age':81,'bestseller':{'series':'LOTR','copiessold':5678}}},


{'author' : {'name':'GeorgeMartin','age':64,'bestseller':{'series':'Fire&Ice','copiessold':12}}},


{'author' : {'name':'UrsulaLeGuin','age':83,'bestseller':{'series':'EarthSea', 'copiessold':444444}}}
]
l=[]#the list for returning


#determining sort algorythm
l = sorted(list, key=lambda e: e[arglist[0]][arglist[1]])#need add as many of these as necesarry to match the number above
print()

これは機能しますが、arglist で引数を手動で指定する必要があるのはばかげているようです。深さ 5 が必要な場合は、手動で e を 5 回指定する必要があります。リスト内包表記または for ループを使用して、任意の要素の深さを自動的に含める方法はありますか?

4

2 に答える 2

4

使用reduce():

sorted(list, key=lambda e: reduce(lambda m, k: m[k], argslist, e))

reduce()関数、入力リスト、およびオプションの初期値を取り、その関数を次の要素と最後の呼び出しの戻り値 (初期値から開始) に再適用します。したがって、m[k0][k1][k2]..[kn]連続するk値が から取得される場所で実行されargslistます。

短いデモンストレーション:

>>> e = {'author' : {'name':'JKRowling','age':47,'bestseller':{'series':'harrypotter','copiessold':12345}}}
>>> argslist = ['author', 'age']
>>> reduce(lambda m, k: m[k], argslist, e)
47
于 2013-01-22T22:05:10.043 に答える
0

引数をトラバースするために for ループを使用しても問題はありません。

>>> e = {'author' : {'name':'JKRowling','age':47,'bestseller':{'series':'harrypotter','copiessold':12345}}}
>>> argslist = ['author', 'age']
>>> result = e
>>> for arg in argslist:
...     result = result[arg]
... 
>>> result
47

この方法はデバッグが非常に簡単try/exceptで、 、print、ブレークポイントなどを配置できます。

于 2013-01-22T22:25:57.413 に答える