j
k
j a
j l
Nicolas Rolin wrote:
grouping(((len(word), word) for word in words))
That actually has one more level of parens than are needed, you can just write grouping((len(word), word) for word in words) -- Greg
Back to the thread
Back to the list