Wondering what I can infer from the below statements?
>>> li=['a', 'b']
>>> id(li)
4300601032
>>> li.insert(0,'Z')
>>> li
['Z', 'a', 'b']
>>> id(li)
4300601032
Is the original list object copied before inserting 'Z' or does it work like a linked-list?