Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Split Pairs by Wakko_Warner
def split_pairs(a):
# your code here
if len(a) % 2 == 1:
a += ('_')
return [a[i:i+2] for i in range(0,len(a),2)]
Nov. 17, 2020
Comments: