I want to create a list of letters from this string in python:
string = 'utf✮fff'
I have tried this:
>>> string = "utf✮fff"
>>> print list(string)
['u', 't', 'f', '\xe2', '\x9c', '\xae', 'f', 'f', 'f']
However it should look like this:
['u', 't', 'f', '\xe2\x9c\xae', 'f', 'f', 'f']
Does anyone know how to create this output? Thank you in advance!