gpt4 book ai didi

python - 为什么 python list L += x 的行为与 L = L + x 不同?

转载 作者:行者123 更新时间:2023-11-28 21:53:25 28 4
gpt4 key购买 nike

<分区>

ls = [1,2,3]
id(ls)
output: 4448249184 # (a)

ls += [4]
id(ls)
output: 4448249184 # (b)

ls = ls + [4]
id(ls)
output: 4448208584 # (c)

为什么(a)和(b)相同,而(b)和(c)不同?

L += xL = L + x 不一样吗?

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