KnowledgeBoat Logo
|

Informatics Practices

CSV refers to tabular data saved as plain text where data values are separated by commas.

Python Data Handling

1 Like

Answer

True

Reason — CSV stands for Comma Separated Values. It is a file format used to store tabular data, such as tables or spreadsheets, as plain text. In a CSV file, each line represents a single row of data, and each value in that row is separated from the next value by a comma (,).

Answered By

1 Like


Related Questions