Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Split Pairs by nicolasprodhomme75
def split_pairs(x):
n=2
mylist=[]
for i in range(0,len(x),n):
if len(x)%2 == 1 :
mylist.append(x[i:i+n])
if len(mylist[-1]) == 1:
mylist.pop(-1)
mylist.append(x[i:i+n]+"_")
else:
mylist.append(x[i:i+n])
return mylist
if __name__ == '__main__':
print("Example:")
print((split_pairs('abcd')))
# These "asserts" are used for self-checking and not for an auto-testing
assert list(split_pairs('abcd')) == ['ab', 'cd']
assert list(split_pairs('abc')) == ['ab', 'c_']
assert list(split_pairs('abcdf')) == ['ab', 'cd', 'f_']
assert list(split_pairs('a')) == ['a_']
assert list(split_pairs('')) == []
print("Coding complete? Click 'Check' to earn cool rewards!")
April 16, 2021