gpt4 book ai didi

python - 为什么不应该在 python 中使用 list.sort

转载 作者:太空狗 更新时间:2023-10-29 22:04:46 24 4
gpt4 key购买 nike

当我浏览 Google Python Class Day 1 Part 2 时在 14:20 - 14:30 Guy 说 “不要使用 list.sort。他还提到 “恐龙使用它!”(即这是一种古老的排序方式)。但他没有提及原因。

谁能告诉我为什么我们不应该使用 list.sort

最佳答案

因为 list.sort() 会进行就地排序。所以这改变了原始列表。但是 sorted(list) 会创建一个新列表而不是修改原始列表。

例子:

>>> s = [1,2,37,4]
>>> s.sort()
>>> s
[1, 2, 4, 37]
>>> s = [1,2,37,4,45]
>>> sorted(s)
[1, 2, 4, 37, 45]
>>> s
[1, 2, 37, 4, 45]

关于python - 为什么不应该在 python 中使用 list.sort,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32111959/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com