gpt4 book ai didi

python - Python变量是指针吗?否则,它们是什么?

转载 作者:IT老高 更新时间:2023-10-28 21:44:25 25 4
gpt4 key购买 nike

据我所知,Python 中的变量只是指针。

根据这条规则,我可以假设这段代码片段的结果:

i = 5
j = i
j = 3
print(i)

应该是 3

但我得到了一个意想不到的结果,它是 5

此外,我的 Python 书确实涵盖了这个示例:

i = [1,2,3]
j = i
i[0] = 5
print(j)

结果将是 [5,2,3]

我理解错了什么?

最佳答案

我们称它们为引用。他们是这样工作的

i = 5     # create int(5) instance, bind it to i
j = i # bind j to the same int as i
j = 3 # create int(3) instance, bind it to j
print i # i still bound to the int(5), j bound to the int(3)

小整数被实习,但这对这个解释并不重要

i = [1,2,3]   # create the list instance, and bind it to i
j = i # bind j to the same list as i
i[0] = 5 # change the first item of i
print j # j is still bound to the same list as i

关于python - Python变量是指针吗?否则,它们是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13530998/

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