考虑以下结构

 'source-document01013.txt': {'AAAGCTTACA': {'endPos': '141',
                                             'startPos': '132'},
                              'AAATCTTAGA': {'endPos': '105',
                                             'startPos': '96'},
                              'AAATGTCCCC': {'endPos': '75',
                                             'startPos': '66'}
                             }


我想按'source-document01013.txt'排序,然后按startPos排序,我该怎么办?

我以前有下面的内容,但是现在我添加了一个嵌套的字典,但此方法坏了。

newDict = sorted(dictionary.items(), key = lambda x: (x[1], int(x[1]['startPos'])))

错误:IndexError: tuple index out of range

最佳答案

l = []
for k, v in sorted(dictionary.items()):
    l.append((k, sorted(v.items(), key=lambda x: int(x[1]['startPos']))))

07-24 15:45