I've split a string by [ and ] but I want these characters to still appear. How do I do this?
words = [beginning for ending in x.split('[') for beginning in ending.split(']')]
|
I think you need re.split to do this easily:
|
||||
|
|
|
Would need to know more about the context of your list and what You can add
Or,
|
||||
|
|
str.partition? – Daenyth Nov 21 '11 at 0:33