Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
I'm having trouble understanding your description. What is the output, what is the input? Please don't change the value/meaning of variables, i.e. instead of L1 = complex_operation(L1, L2) explain it as L3 = complex_operation(L1, L2). Also, refrain from using shorthands such as "---->" or "or:". I've no idea what either symbol means. – phihag Feb 5 '11 at 21:47
sorry for the mess! – jaden Feb 5 '11 at 21:57

2 Answers

You can replace slices of the list.

>>> L1 = ['a','b','c','d','e','a','a','e','e','b','b']
>>> L2 = [1,2,3,4,5]
>>> length = len(L2)
>>> L1[:length] = L2[:length]
>>> print(L1)
[1, 2, 3, 4, 5, 'a', 'a', 'e', 'e', 'b', 'b']

Just in case I misinterpreted what you wanted and want to replace every instance of 'a' with 1, 'b' with 2, etc., this works:

>>> L1 = ['a','b','c','d','e','a','a','e','e','b','b']
>>> L2 = [1,2,3,4,5]
>>> mapping = dict(zip(L1, L2))
>>> for i, k in enumerate(L1[:]):
        L1[i] = mapping[k]
>>> print(L1)
[1, 2, 3, 4, 5, 1, 1, 5, 5, 2, 2]
share|improve this answer
THANK YOU VERY VERY VERY MUCH!!!! The second piece of code is exactly what I was trying to get together! I can't thank you enough. Finally I can go to sleep .... and sleep ;) – jaden Feb 5 '11 at 22:06

You can create a dictionary containing the mappings of the values from l1 to l2, { 'a':1, 'b':2,....}, then iterate over l1 and replace the values.

d = dict ((l1[idx],y) for idx, y in enumerate(l2))
l1 = [d[x] for x in l1]

EDIT: For a better understanding of your question it would be helpful to post the expected outputs for the given examples.

share|improve this answer
Thanks for your effort but the second piece of code from jeff was exactly what i was looking for! thx for trying to help out. jaden – jaden Feb 6 '11 at 10:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.