gpt4 book ai didi

python - python类的奇怪行为

转载 作者:太空宇宙 更新时间:2023-11-04 09:16:58 24 4
gpt4 key购买 nike

<分区>

这是一个 python 类:

class TxdTest(object):
def __init__(self, name = '', atrributes = []):
self.name = name
self.attributes = atrributes

然后我像这样使用它:

def main():
for i in range(3):
test = TxdTest()
print test.name
print test.attributes
test.name = 'a'
test.attributes.append(1)

那么,结果如何呢?结果是:

[]

[1]

[1, 1]

为什么类中的'self.attributes'仍然获取值?

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