If I type a unicode word, for e.g. "test" it will return t,e,s,t
What all I want to do is to save the output in a mysql table as follows:
1 1 t 1 2 e 1 3 s 1 4 t
Where 1 is the unique word id and 1,2,3,4 are the character positions. The python script needs to be modified to accommodate this change. Is it possible what I am trying to achieve?