Hi, so in essence I have two little scripts: a server side script and a client side script. My client script sends a request to the server, and the server sends a string to the client. Once I get the string back into the client, I set it to the variable myString (the value is "20,17,18,19,"). After, I run the following code:
myList = []
parts = myString.split(",")
for x in parts:
myList.append(x)
print myList
The following is returned:
I'm not sure, but is this hex or something? And why am I getting this kind of behavior? Thanks in advance.