I have a string like this
string_ = 'hello world, world, hello, stackoverflow, me, not, me'
How to change it into a list like this?
['hello world', 'world', 'hello', 'stackoverflow', 'me', 'not', 'me']
I have try
alist = list(string_)
but when I format alist
It shows
['h', 'e', 'l', ... ]