I'm using python2.7. In my script i receive lines from server in next format:
product,"Tom,Jerry\\n",r,0
product,Another Title,r,1
So i need read this string line by line. And then read 4 values to list. But i can't simple do split(",")
, because we can have ,
character in title.