Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Split Pairs by JuiZZZe
def split_pairs(a):
# your code here
lst_len = len(a)
lst = []
if lst_len == 0:
return lst
else:
if not lst_len % 2 == 0:
a = a + '_'
lst_len += 1
for i in range(0, lst_len - 1, 2):
lst.append(a[i : i + 2])
return lst
if __name__ == '__main__':
print("Example:")
print(list(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 15, 2021