是否有比这更Pythonic,紧凑,直观的方式来对字母等级进行排序(不使用自定义字典)?

grades = ['B-','C','B','C+','A','D+','B+','C-','A+','D','A-']

sorted(grades, key=lambda g: (g[0], '+ -'.index((g+' ')[1])) )

['A+', 'A', 'A-', 'B+', 'B', 'B-', 'C+', 'C', 'C-', 'D+', 'D']


为了获得'X-','X','X +'的比较数值顺序,我对空格''进行了hacky追加,以便g[1]始终存在,因此可以使用.index()来获取修饰词“ +-”的等级。

(由this question推动)

最佳答案

没有。

modmap = {
  '-': 0,
  '': 1,
  '+': 2
}

print(sorted(grades, key=lambda x: (-ord(x[0]), modmap[x[1:]])))

关于python - 字母等级“D”,“C-”,…,“A +”的Pythonic自定义排序?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50111642/

10-11 23:23
查看更多