Skip to content

Instantly share code, notes, and snippets.

@lwzm
Last active August 29, 2015 13:56
Show Gist options
  • Save lwzm/9188306 to your computer and use it in GitHub Desktop.
Save lwzm/9188306 to your computer and use it in GitHub Desktop.
def list_all_same_type(type_conv):
def conv(v):
return [conv(i) for i in v] if isinstance(v, list) else type_conv(v)
return conv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment