因此,我有一個從excel電子表格中提取的二維數據,我目前正在根據具有關鍵性數據的列進行排序。如何在python中進行分層排序?
#rows contains my data that I'm sorting, it's a 2D array
searchdict = dict(Critical=1, High=2, Medium=3, Low=4)
rows.sort(key=lambda row: searchdict.get(row[11], 5))
我想基於另一列進行排序,如果它是該列領帶,任何人都知道如何處理呢?預先感謝您的幫助。
供參考:另一列包含數值數據
http://stackoverflow.com/questions/1516249/ python-list-sorting-with-multiple-attributes-and-mixed-order – georg