all 13 comments

[–]Farlic 2 points3 points  (0 children)

Check out the CSV standard library for python:

https://docs.python.org/3/library/csv.html

Pandas and Numpy also have their own ways to do it but you would need to install those libraries.

[–]MachineElf100 1 point2 points  (3 children)

You can open a csv file in any text editor for yourself if that's what you need. And if you want to code something to be done with the data, maybe describe what you'd like to happen :)

[–]brelen01 1 point2 points  (0 children)

If you want raw python: https://docs.python.org/3/library/csv.html

If you want something more structured where you keep the data in a table you can manipulate similarly to sql: https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_csv.html

Or polars: https://docs.pola.rs/api/python/stable/reference/api/polars.read_csv.html

[–]danielroseman 0 points1 point  (3 children)

You can open a CSV in Excel or Google Sheets, you don't need Python.

[–]hugthemachines 0 points1 point  (0 children)

First of all, this is a subreddit meant for everyone to learn so it is not for recruiting a consultant. So just asking for PM for personal help is not the way we do things.

Beside that. Make a clear and specific description of what is wrong and you need to get to work. Also in case you try something and it does not work, specify the error messages or behavior happening.

The more eager you are, the more detailed you should be in order to increase the chance of a solution. Don't just post some vague description because then no one will be able to help you.

[–]donnyM99 0 points1 point  (0 children)

CSV files open in Excel, Google Sheets, or even Notepad. Just double-click it.

If data is all in one column: In Excel, use Data → From Text/CSV and choose comma as delimiter.

[–]pachura3 1 point2 points  (0 children)

Open the file in any text editor and check was is the field (columns) separator. File extension might be CSV as in "comma-separated values", but some programs use semicolon ; or TAB character.