Here I've got a string looks like that '128,120,119,118,119,118,120,116,116,120,128,121'
I want to make it to be a list like this
[128,120,119,118,119,118,120,116,116,120,128,121]
So I have ever tried a command 'list' in python to make it be a list
However, the result looks like that ['1', '2', '8', ',', '1', '2', '0', ',', '1', '1', '9', ',', '1', '1', '8', ',', '1', '1', '9', ',', '1', '1', '8', ',', '1', '2', '0', ',', '1', '1', '6', ',', '1', '1', '6', ',', '1', '2', '0', ',', '1', '2', '8', ',', '1', '2', '1']
.
Although the type of the string data is list, the cutting point is wrong.