I am looking for the shortest way to do the following (one line solution)
a = ["a", "b", "c"]
b = ["w", "e", "r"]
I need the following output:
q = ["a w", "b e", "c r"]
Of course, this can be achieved using a for loop. But I'm wondering if there is a sane solution?
source
to share