sodoku
Oct 16, 2020 - 09:20
I have a question about a list of strings
Say I got a list like
a=[‘Haloween’, ‘Boom’, ‘hi’, ‘Howl’, ‘if’, ‘ghosts’]
How do you split or slice the strings to make a list like
a=[‘Ha’, ‘lo’, ‘we’, ‘en’, ‘Bo’, ‘om’, ‘hi’, ‘Ho’, ‘wl’, ‘if’, ‘gh’, ‘os’, ‘ts’]
Is this possible to do?