I have two lists:
A = ['John,Male,20,','Jenny,Female,25','James,Male,30']
B = ['London','Paris','Washington']
Is there a way I can insert the values in the second list into the first list
Hypothetical output:
['John,Male,20,London','Jenny,Female,25,Paris','James,Male,30,Washington']