I wish to update the list such as below:
a = ['1-1-1,', 'market area,', 'destination,', 'power,', 'power', '-', '2', '234567', '90']
into
b = ['1-1-1,', 'market area,', 'destination,', 'power,', 'power', '-', '223456790']
What it does is actually to find elements in the list and if the next element is also digit then combine it. After combining all then reupdate the list as above.