>>> person
=
[
'name'
, [
'age'
,
20
]]
>>> xpleaf
=
person[:]
>>> cl
=
list
(person)
>>> person, xpleaf, cl
([
'name'
, [
'age'
,
20
]], [
'name'
, [
'age'
,
20
]], [
'name'
, [
'age'
,
20
]])
>>> [
id
(x)
for
x
in
person, xpleaf, cl]
[
140205544995944
,
140205544893688
,
140205544875144
]
>>> [
id
(x)
for
x
in
person, xpleaf, cl]
[
140205544996160
,
140205544875144
,
140205544996520
]
>>> [
id
(x)
for
x
in
person]
[
140205546176112
,
140205544995944
]
>>> [
id
(x)
for
x
in
xpleaf]
[
140205546176112
,
140205544995944
]
>>> [
id
(x)
for
x
in
cl]
[
140205546176112
,
140205544995944
]
>>> [
id
(x)
for
x
in
person[
1
]]
[
140205545021232
,
32419680
]
>>> [
id
(x)
for
x
in
xpleaf[
1
]]
[
140205545021232
,
32419680
]
>>> [
id
(x)
for
x
in
cl[
1
]]
[
140205545021232
,
32419680
]