With underscore.py: ``` _.groupBy(['one'], lambda x, l: len(x)) # --> ['one'] ``` With underscore.js: ``` _.groupBy(['one'], 'length') // --> {3: ["one"]} ```