I currently have an array of strings and I'm trying to join it together with another array of strings to form a complete word to do some web parsing. For example:`
Var1 [A B C, .... ....]
Var2 [1 2 3]
where A and B are at a variable length and I'm trying to join them together like:``
`
C [A+1 A+2 A+3
B+1 B+2 B+3
C+1 C+2 C+3
Here's what I've tried
for param in np.nditer(Var2):
List = np.append(np.core.defchararray.add(Var1, Var2))
So I'm trying to add them together and then create a list of lists, but this isn't working. any ideas how to do this?
See Question&Answers more detail:os