I have this kind of list of dictionary
[
{'word': u'live', 'sequence': 1L, 'part': 1L},
{'word': u'school', 'sequence': 2L, 'part': 1L},
{'word': u'job', 'sequence': 1L, 'part': 2L},
{'word': u'house', 'sequence': 2L, 'part': 2L},
]
That I'd like to transform into this kind of list of list of dictionary
[
[
{'word': u'live', 'sequence': 1L, 'part': 1L}
{'word': u'school', 'sequence': 2L, 'part': 1L},
],
[
{'word': u'job', 'sequence': 1L, 'part': 2L},
{'word': u'house', 'sequence': 2L, 'part': 2L},
],
]
Based on the key part and ordered on sequence
How can I do that ?