在把list写到csv过程中,遇到一个list的排序问题,list中存放的是数字字符,需要按数字大小来排序
测试源码

点击(此处)折叠或打开

  1. testList = ['1', '5', '2', '10', '50', '21', '31', '3', '7']
  2. print('testList={}'.format(testList))
  3.                                                                                                                                                                                              
  4. normalSortList = testList[:]
  5. normalSortList.sort()
  6. print('after sort(): {}'.format(normalSortList))

  7. intSortList = testList[:]
  8. intSortList.sort(key = int)
  9. print('after sort(key=int): {}'.format(intSortList))
运行
python3 ./test.py
testList=[‘1’, ‘5’, ‘2’, ‘10’, ‘50’, ‘21’, ‘31’, ‘3’, ‘7’]
after sort(): [‘1’, ‘10’, ‘2’, ‘21’, ‘3’, ‘31’, ‘5’, ‘50’, ‘7’] #会发现这里2在10之后,显然不是自己需要的
after sort(key=int): [‘1’, ‘2’, ‘3’, ‘5’, ‘7’, ‘10’, ‘21’, ‘31’, ‘50’] #使用sort(key=int)来排序,结果就对了

作者:帅得不敢出门

09-26 17:52
查看更多