Files
30-seconds-of-code/glossary/CSV.md
Angelos Chalaris 49b25097a2 Add CSV
2018-09-01 12:33:14 +03:00

6 lines
354 B
Markdown

### CSV
CSV stands for Comma-Separated Values and is a storage format for tabular data.
CSV documents are plaintext documents where each line represents a table row, with table columns separated by commas or some other delimiter (e.g. semicolons).
The first line of a CSV document sometimes consists of the table column headings for the data to follow.