Remove comma from tuples in python.

Roy Smith roy at panix.com
Fri Feb 21 09:32:18 EST 2014


In article <mailman.7230.1392992078.18130.python-list at python.org>,
 Peter Otten <__peter__ at web.de> wrote:


> [x*x for (x,) in lst]
>
> [paraphrasing...] can be better written as:
>
> [x*x for [x] in items]

I'm torn between, "Yes, the second form is distinctly easier to read" 
and, "If you think the second form is easier to read, you're admitting 
you're not really fluent in Python".



More information about the Python-list mailing list