标签: python sorting object
如果对变量使用sorted()方法,它会创建一个新对象吗?
sorted()
答案 0 :(得分:1)
是的,另请参见documentation:
简单的升序排序非常简单:只需调用sorted()函数。它返回一个新的排序列表
>>> sorted([5, 2, 3, 1, 4]) [1, 2, 3, 4, 5]
您也可以自己尝试:
>>> a = [1, 2, 3] >>> sorted(a) is a False