Dasn wrote:
> So how to put '\t' argument to split() in map() ?

How much is the lambda costing you, according to your profiler?

Anyway, what you really want is a list comprehension:

l = [line.split('\t') for line in lines]

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

Reply via email to