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 trying to add together two lists so the first item of one list is added to the first item of the other list, second to second and so on to form a new list.

Currently I have:

def zipper(a,b):
    list = [a[i] + b[i] for i in range(len(a))]
    print 'The combined list of a and b is'
    print list

a = input("\n\nInsert a list:")
b = input("\n\nInsert another list of equal length:")

zipper(a,b)

Upon entering two lists where one is a list of integers and one a list of strings I get the Type Error 'Can not cocanenate 'str' and 'int' objects.

I have tried converting both lists to strings using:

list = [str(a[i]) + str(b[i]) for i in range(len(a))]

however upon entering:

a = ['a','b','c','d']
b = [1,2,3,4]

I got the output as:

['a1','b2','c3','d4']

instead of what I wanted which was:

['a+1','b+2','c+3','d+4']

Does anyone have any suggestions as to what I am doing wrong?

N.B. I have to write a function that will essentially perform the same as zip(a,b) but I'm not allowed to use zip() anywhere in the function.

share|improve this question

2 Answers

up vote 1 down vote accepted

What you should do

You should use

list = [str(a[i]) +"+"+ str(b[i]) for i in range(len(a))]

instead of

list = [str(a[i]) + str(b[i]) for i in range(len(a))]

In your version, you never say that you want the plus character in the output between the two elements. This is your error.

Sample output:

>>> a = [1,2,3]
>>> b = ['a','b','c']
>>> list = [str(a[i]) +"+"+ str(b[i]) for i in range(len(a))]
>>> list
['1+a', '2+b', '3+c']
share|improve this answer
I still get the same 'cannot cocatenate 'str' and 'int' objects.' – George Burrows Oct 31 '11 at 0:40
@GeorgeBurrows How did you get that ['a1','b2','c3','d4'] without error so, could your detail? – lc2817 Oct 31 '11 at 0:41
By using: list = [str(a[i]) + str(b[i]) for i in range(len(a))] – George Burrows Oct 31 '11 at 0:45
@GeorgeBurrows What about the snipped I just typed in my python log with exactly the same line I gave you? – lc2817 Oct 31 '11 at 0:46
1  
Oh now it's decided it wants to work, thanks for the help! – George Burrows Oct 31 '11 at 0:49

Zip first, then add (only not).

['%s+%s' % x for x in zip(a, b)]
share|improve this answer
Sorry I should have mentioned, I have to write a function that will essentially perform the same as zip(a,b) but I'm not allowed to use zip() anywehere in the function. – George Burrows Oct 31 '11 at 0:42
1  
So then adapt what you already have and use that in place of zip(). – Ignacio Vazquez-Abrams Oct 31 '11 at 0:45

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.