I am almost new to python and I am stuck with a seemingly simple problem. I got two lists
L1 = [a,b,c]
L2 = [1,2,3]
now I want to replace the values from L2 to L1 becoming L1 = [1,2,3]
Now this is where the fun comes in
the length of L2 is always how many unique items there can be in L1 eg.
L2 = [1,2,3,4,5]
than
L1 = [a,b,c,d,e]
or
L2 = [1,2]
than
L1 = [a,b]
but thats not all... L1 can be different in length and unordered after the length of L2..:
eg:
L2 = [1,2]
than L1 might be
L1 = [a,b,a,a,a,b] #(first two items are always different)
or
L2 = [1,2,3,4,5]
than L1 might be
L1 = [a,b,c,d,e,a,a,e,e,b,b] #(first 5 items are different)
I hope I explained it good enough. If there are any question feel free to ask!
I hope someone can help me out or give me a hint where or what to search for. I am trying to solve this since days.
thx in advance
jaden
_edit__
L1 and L2 are created early in my script. Now I somehow want to connect the items in both lists.
L1[0] = L2[0]
L1[1] = L2[1]
and so on. for the lenght of L2, but it has to happen for every item in L1 since L1 is always longer than L2. Thats the problem.
Hope this helps,
jaden