Steven D'Aprano <[EMAIL PROTECTED]> wrote:

> Why are you calling it a Comma Separated Values file when there are no
> commas separating values in it?

It's common usage -- the Python standard library's csv also lets you
parse files where the separator is not a comma -- you just need to have
an explicit 'delimiter' (the comma is just the default value for this);
indeed, class csv.excel_tab has an explicit delimiter set to '\t'.


Alex
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to