Promptles
GTM & Business Tools

CSV (Comma-Separated Values)

beginner

Definition

A plain-text file format where each line is a row of data and commas separate the columns. It is the universal exchange format for tabular data: almost every SaaS tool can export and import CSVs. They are simple but fragile: commas inside values need quoting, character encoding can vary, and large files can be slow to process row by row.

In the wild

You export your Salesforce contacts as a CSV. The file has headers like 'Name,Email,Company,Deal Stage' and one row per contact. You write a Python script to read the CSV, filter for contacts in the 'Negotiation' stage, and output a smaller CSV for the sales team.

More from GTM & Business Tools