I was hoping someone could help me with this. I'm getting a file from a form in Django, this file is a csv and I'm trying to read it with Python's library csv. The problem here is that when I apply the function csv.reader and I turn that result into a list in order to print it, I find out that csv.reader is not splitting correctly my file. Here are some images to show the problem
And this is the printed value of the variable file_readed:

As you can see in the picture, it seems to be splitting my file character by character with some exceptions. I thank you for any help you can provide me.

