借王某坚的书看了看,发现了不少新的点,慢慢整理,列表排序如下:
list=[3,2,1,0,8,1,9,7,5]
#使用sort对列表进行排序(对数字)
print("原列表:",list)
#从小到大排序
list.sort()
print("从小至大:",list)
#从大至小
list.sort(reverse=True)
print("从大至小:",list)
#使用sort对列表进行排序(对字母)
word=["A","V","i","l","i","K","e"]
print("原列表:",word)
word.sort()
print("字母顺序:",word)
#对字符串进行排序时,默认先排大写,后小写
word.sort(key=str.lower)
print("不区分大小写排序:",word)