I want to split elements of a length greater than n in a list and keep both parts of the split without nesting them. For example if I have a list:
['abc', 'abcde', 'abcd']
and wanted to split any item with a length greater than 2 I would want to turn it into
['ab', 'c', 'ab', 'cd', 'e', 'ab', 'cd']