Is it possible to add two lists, with different value types in Python? Or is there an alternative way? For example:
listString = ['a','b','c','d']
listInt = [1,2,3,4]
I want to combine these so that the output string is either:
finalString = [('a',1),('b',2),('c',3),('d',4)]
or
finalString = ['a',1,'b',2,'c',3,'d',4]