hi and thank por your help
var list1=["a","b","c"]
var list2=[]
list2=list1
list2.remove(1)
print(list1," ",lis2) -> [a, c] [a, c] #i remove in list2 but affect too list1 ,why ?
o how can get this:
[a, b, c] [a, c] #i want get this , list1 3 items , and list2 2 items
thanks