I wanted to insert a new item in my list.However, because i wanted to keep my original list intact, i equaled my original list to another string letter. However, when i insest to the "s" list, this new element, it is inserted to all lists even though no such operation is performed!
Why? I am missing something: (Pycharm with Python 2.3).
l_max=[1,2,3]
a=l_max
b=a
c=b
s=c
s.insert(0, 0)