lambda solution in Creative category for Split Pairs by oldjaponec
split_pairs= lambda S: [i+j for i,j in zip(S[::2],S[1::2]+'_')]
Aug. 11, 2021