Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
textwrap solution in Clear category for Split Pairs by fokusd
from textwrap import wrap
def split_pairs(a):
a = a + '_' if len(a) % 2 else a
return wrap(a, 2)
July 12, 2019
Comments: