I have two lists of names that are the same length and I'd simply like to combine them into a third list so the first value in each list is combined, then the second, and so forth. I know I'm missing something very obvious.
I've tried using "+" but that doesn't work for the two lists.
mgr_name = pd_ex.iloc[3,:].tolist()
prod_name = pd_ex.iloc[4,:].tolist()
I would like the output to be: [mgr_name 1 + " " + prod_name 1, mgr_name 2 + " " + prod_name 2, ...]