School Management System in Python

Gregory Ewing greg.ewing at canterbury.ac.nz
Wed Jul 5 19:47:20 EDT 2017


> On 07/05/2017 03:18 PM, YOUR_NAME_HERE wrote:
> 
>>Some people complain that tsv has problems, so maybe csv would be the way to go.

The main downside to tsv is that it can be hard to deal with
in a text editor -- the difference between tabs and spaces
is not visually obvious.

The only reason I can think of to want to use tsv instead
of csv is that you can sometimes get away without having
to quote things that would need quoting in csv. But that's
not an issue in Python, since the csv module takes care of
all of that for you.

-- 
Greg



More information about the Python-list mailing list