I am writing a script that when you put in a buisness name, it gets the phone number and address for the place.
Unfortunately the phone numbers and adresses are in different lists, and I need to figure out how to combine the lists with a sort of a 'Go here, skip one, go here" sort of thing.
EXAMPLE:
i = ['a', 'b', 'c']
l = ['1', '2', '3']
How could I combine these so it becomes
['1', 'a', '2', 'b', '3', 'c']