which of the following is not true about a csv file?\na) each row or record in the file usually ends with a…

which of the following is not true about a csv file?\na) each row or record in the file usually ends with a new line character.\nb) the columns or fields are usually separated by commas.\nc) the csv module is a standard module so you dont need to import it\nd) to write data to a file, you need to get a writer object.
Answer
Brief Explanations:
In Python, although the csv module is a standard - library module, you still need to import it to use its functionality. Options a, b, and d are correct facts about CSV files. Each row in a CSV file usually ends with a new - line character, columns are separated by commas, and to write data to a CSV file, you need a writer object.
Answer:
C. The csv module is a standard module so you don't need to import it