How to concatenate element-wise two lists in Python

I have two lists and I want to concatenate them element-wise. One of the list is subjected to string-formatting before concatenation.

For example :

a = [0, 1, 5, 6, 10, 11] 
b = ['asp1', 'asp1', 'asp1', 'asp1', 'asp2', 'asp2']

In this case, a is subjected to string-formatting. That is, new a or aa should be :

aa = [00, 01, 05, 06, 10, 11]

Final output should be :

c = ['asp100', 'asp101', 'asp105', 'asp106', 'asp210', 'asp211']

Can somebody please tell me how to do that?

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

Use zip:

>>> ["{}{:02}".format(b_, a_) for a_, b_ in zip(a, b)]
['asp100', 'asp101', 'asp105', 'asp106', 'asp210', 'asp211']

Method 2

Using zip

[m+str(n) for m,n in zip(b,a)]

output

['asp10', 'asp11', 'asp15', 'asp16', 'asp210', 'asp211']

Method 3

Other solution (preferring printf formating style over .format() usage), it’s also smaller:

>>> ["%s%02d" % t for t in zip(b, a)]
['asp100', 'asp101', 'asp105', 'asp106', 'asp210', 'asp211']

Method 4

Than can be done elegantly with map and zip:

map(lambda (x,y): x+y, zip(list1, list2))

Example:

In [1]: map(lambda (x,y): x+y, zip([1,2,3,4],[4,5,6,7]))
Out[1]: [5, 7, 9, 11]

Method 5

inputs:

a = [0, 1, 5, 6, 10, 11] 
b = ['asp1', 'asp1', 'asp1', 'asp1', 'asp2', 'asp2']

concat_func = lambda x,y: x + "" + str(y)

list(map(concat_func,b,a)) # list the map function

output:

['asp10', 'asp11', 'asp15', 'asp16', 'asp210', 'asp211']

Method 6

If you wanted to concatenate arbitrary number of lists, you could do this:

In [1]: lists = [["a", "b", "c"], ["m", "n", "o"], ["p", "q", "r"]] # Or more

In [2]: lists
Out[2]: [['a', 'b', 'c'], ['m', 'n', 'o'], ['p', 'q', 'r']]    

In [4]: list(map("".join, zip(*lists)))
Out[4]: ['amp', 'bnq', 'cor']

Method 7

not using zip. I dunno, I think this is the obvious way to do it. Maybe I just learnt C first 🙂

c=[]
for i in xrange(len(a)):
    c.append("%s%02d" % (b[i],a[i]))

Method 8

b = ['asp1', 'asp1', 'asp1', 'asp1', 'asp2', 'asp2']
aa = [0, 1, 5, 6, 10, 11]
new_list =[]
if len(aa) != len(b):
     print 'list length mismatch'
else:
    for each in range(0,len(aa)):
        new_list.append(b[each] + str(aa[each]))
print new_list

Method 9

I ended up using a temporary DataFrame, it’s readable and fast:

a = ["a", "b", "c"]
b = ["1", "2", "3"]

df = pd.DataFrame({"a": a, "b": b})
df["c"] = df.a + df.b
result = df.c.values

Output:

$ result 
["a1", "b2", "c3"]

Behind the scenes, DataFrames use numpy, so the result is efficient.


And the same thing as a function:

import pandas as pd
from typing import List
def _elementwise_concat(self, a: List[str], b: List[str]) -> List[str]:
    """
    Elementwise concatenate.
    :param a: List of strings.
    :param b: List of strings.
    :return: List, same length, strings concatenated.
    """
    df = pd.DataFrame({"a": a, "b": b})
    df["c"] = df.a + df.b
    return df.c.values

Method 10

List comprehension / zip() / use of zfill() to format.

print ([y+str(x).zfill(2) for x,y in zip(a,b)])

Output:

['asp100', 'asp101', 'asp105', 'asp106', 'asp210', 'asp211']

Method 11

Using lambda and format:

b = ['asp1', 'asp1', 'asp1', 'asp1', 'asp2', 'asp2']
a = [0, 1, 5, 6, 10, 11]

list(map(lambda x: x[0] + "{0:0=2d}".format(x[1]), zip(b, a)))

Out:

['asp100', 'asp101', 'asp105', 'asp106', 'asp210', 'asp211']


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x