I have a list below:
list = [' ab: 1', ' cd: 0', ' ef: 2 gh: 3', ' ik: 4']
From above list, I need something like below:
newlist = [' ab: 1', ' cd: 0', ' ef: 2', ' gh: 3', ' ik: 4']
So "list" contains 4 elements and then I need "newlist" to contain 5 elements.
Is there any way split() can be used here?
list!