lists = [8,2,4,1,5,7,3]
# 对lists进行排序,但不改变lists
print(sorted(lists))
# 对lists进行排序,且改变了lists
lists.sort()
print(lists)
python -- sorted() 函数与 .sort() 的区别
最新推荐文章于 2024-04-28 17:11:42 发布
lists = [8,2,4,1,5,7,3]
# 对lists进行排序,但不改变lists
print(sorted(lists))
# 对lists进行排序,且改变了lists
lists.sort()
print(lists)