I need to create the following solution, I have a CSV file that the delimiter is a comma (,), but in one of the columns this comma can come by error in the user registration. The CSV scenario is this:
francisco, 17, fran-mail@gmail,com, blue
kai, 10, pont_193@yahoo.com, red
Deive, 19, deveper@hotmail,com, black
How can I do this interpretation without breaking my reading in Python 2.7?
In my scenario I don't have permission to update Python.