prog8_7.py

L1 = [2, 3, 5]
L2 = [2, 3, 5]
L3 = L1
print(L1, L2, L3)

print(id(L1), id(L2), id(L3))

# プログラム8-7(リストオブジェクトが同一か調べる)