The question is in the title.
How do you create a list
r = range(5)
and just reference the data without referencing the object itself.
ie.
o = r
.. I just want to reference range(5) without referencing r itself.
if i did
o.pop(0)
it likewise does r.pop(0)
...ideas?