Python: Sort a Nested List With Specific Criteria
问题 As a beginner of Python I recently get stuck for a problem of sorting a nested list with specific criteria. I have a nested list like this: nestedList=[['R2D2','1path1','1path2'], ['R3A1','2path1','2path2'], ['R15L2','3path1','3path2']] I would like this list to be sorted by the first string in each nested list. The result would look like: nestedList=[['R15L2','3path1','3path2'], ['R3A1','2paht1','2path2'], ['R2D2','1path1','1path2']] Currently my solution is only use the sort function with