how do i insert spaces into a string using the range function?
- by user1319219
If I have a string, for example which reads: 'Hello how are you today Joe' How am I able to insert spaces into it at regular intervals? So for example I want to insert spaces into it using the range function in these steps: range(0,27,2). So it will look like this:
'He lo ho w ar e yo u to da y Jo e'
It now has a space at every 2nd index going up to it's end. How do I do this does anyone know? thanks.