Computer Science
The csv files can only take comma as delimiter.
Python File Handling
1 Like
Answer
False
Reason — The separator character of CSV files is called a delimiter. Default and most popular delimiter is comma. Other popular delimiters include the tab (\t), colon (:), pipe (|) and semicolon (;) characters.
Answered By
3 Likes
Related Questions
The load() function of the pickle module performs pickling.
The dump() function of the pickle module performs unpickling.
The csv files are text files.
Assertion. Python is said to have broadly two types of files - binary and text files, even when there are CSV and TSV files also.
Reason. The CSV and TSV are types of delimited text files only where the delimiters are comma and tab respectively.