Skip to content

Instantly share code, notes, and snippets.

@lig
Created January 28, 2013 10:18
Show Gist options
  • Save lig/4654428 to your computer and use it in GitHub Desktop.
Save lig/4654428 to your computer and use it in GitHub Desktop.
a = ['123', '1234', None, '12']
## 1
from operator import methodcaller
b = [methodcaller('__len__')(x) for x in a if x]
print(b)
## 2
b = [len(x) for x in a if x]
print(b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment