gpt4 book ai didi

python - 简单的Python问题: Why can't I assign a variable to a sorted list (in place)?

转载 作者:行者123 更新时间:2023-12-02 08:24:55 25 4
gpt4 key购买 nike

y = [1, 3, 2, 4]
x = y.sort()
print(x)

x 是 None 。为什么这种语法适用于 JavaScript,而不是 Python?

最佳答案

排序(和反向)就地更改列表。

如果需要,您可以使用已排序:

x = sorted(y)

这在Data Structures部分中有解释。在文档中。

关于python - 简单的Python问题: Why can't I assign a variable to a sorted list (in place)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61174535/

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