There is a simple technique to handle this.
Code:
number=[1,2,3,4,5,6] #Original listanother=[] #another empty listfor a in number: #here I am declaring variable (a) as an item in the list (number) another.append(a) #here we are adding the items of list (number) to list (another)print(another)Output:
>>> [1,2,3,4,5,6]I hope this was useful for your query.