に別のに合わせて、1つのリストを並べ替え:は、私はこれらのリストがあるとのpython
ids = [4, 3, 7, 8]
objects = [
{"id": 7, "text": "are"},
{"id": 3, "text": "how"},
{"id": 8, "text": "you"},
{"id": 4, "text": "hello"}
]
どのように私はobjects
を並べ替えることができますので、そのIDの順序はids
と一致しますか?私。この結果を得るために:
objects = [
{"id": 4, "text": "hello"},
{"id": 3, "text": "how"},
{"id": 7, "text": "are"},
{"id": 8, "text": "you"}
]
を私はあなたが何度も何度もそれをやっていないのdict-COMPを考慮思います。 – mgilson