I need to get the string list along with delimiter For example
string= "I am a developer and i need to work on web development"
I am using
re.split("and", string)```
I need to get Output as
**Output**
```I am developer
and i need to work on web development```