python的工作方式包括_Python sorted()函数不应该按照它应该的方式工作
基本上我有一个嵌套列表,我试图通过第一个索引进行排序我复制了python howto如何做的方式,但它似乎不起作用,我不明白为什么:来自网站的代码:>>> student_tuples = [('john', 'A', 15),('jane', 'B', 12),('dave', 'B', 10),]>>> sorted(student_tuples, key=...