Top "Csv" questions

Comma-Separated Values or Character-Separated Values (CSV) is a standard "flat file database" format for storing tabular data in plain text, consisting of an optional header row that lists the table fields delimited by commas or tabs or other delimiter character, followed by one or more rows (newline separated) representing the table records as delimited lists of the values.

Excel to CSV with UTF8 encoding

I have an Excel file that has some Spanish characters (tildes, etc.) that I need to convert to a CSV …

excel encoding csv utf-8
Python Pandas Error tokenizing data

I'm trying to use pandas to manipulate a .csv file but I get this error: pandas.parser.CParserError: Error tokenizing …

python csv pandas
Dump a NumPy array into a csv file

Is there a way to dump a NumPy array into a CSV file? I have a 2D NumPy array and …

python arrays csv numpy
Save PL/pgSQL output from PostgreSQL to a CSV file

What is the easiest way to save PL/pgSQL output from a PostgreSQL database to a CSV file? I'm using …

sql postgresql csv postgresql-copy
Create a .csv file with values from a Python list

I am trying to create a .csv file with the values from a Python list. When I print the values …

python csv xlrd
Writing data into CSV file in C#

I am trying to write into a csv file row by row using C# language. Here is my function string …

c# file csv
How to export JavaScript array info to csv (on client side)?

I know there are lot of questions of this nature but I need to do this using JavaScript. I am …

javascript csv export client-side dojo-1.8
How to export query result to csv in Oracle SQL Developer?

I'm using Oracle SQL Developer 3.0. Trying to figure out how to export a query result to a text file (preferably …

oracle csv export oracle-sqldeveloper
Read specific columns from a csv file with csv module?

I'm trying to parse through a csv file and extract the data from only specific columns. Example csv: ID | Name | …

python csv
Writing to an Excel spreadsheet

I am new to Python. I need to write some data from my program to a spreadsheet. I've searched online …

python excel csv