I am new to python and I need to do this:
lines = ['apple','bear']
signed=['aelpp','aber']
I want the output to be:
res = ['aelpp apple', 'aber bear']
I'd appreciate if you can help! I've tried simply using + and the join() function but not getting what I want.