Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
native_split_pairs solution in Uncategorized category for Split Pairs by Jon_Red
def split_pairs(a):
if len(a)%2!=0:a+='_'
return[a[b:b+2]for b in range(0,len(a),2)]
April 19, 2020
Comments: