美文网首页
python * 的操作

python * 的操作

作者: cannedfishcan | 来源:发表于2018-08-14 11:54 被阅读0次

    a = [[]] * 4

    a[1].append(1)

    print(a)

    $: [[1], [1], [1], [1]]

    a[1][0] = 20

    print(a)

    $: [[20], [20], [20], [20]]

    看起来在这里,*并非复制对象本身,而是复制了引用

    相关文章

      网友评论

          本文标题:python * 的操作

          本文链接:https://www.haomeiwen.com/subject/pqgmbftx.html