I have two lists
list1 = ['1','2','3']
list2 = ['4','5','6']
desire list3 to be ['14','25','36']
Is there a python built in function that can do this?
I have searched for a method to do this but have not found anything. Everything all the functions simply append one list to the other. Not what I want to do