Skip to content

Instantly share code, notes, and snippets.

@azami
Created July 8, 2014 02:46
Show Gist options
  • Save azami/10e97886c925c8a9bdcf to your computer and use it in GitHub Desktop.
Save azami/10e97886c925c8a9bdcf to your computer and use it in GitHub Desktop.
python camel case to snake case
def to_snake_case(string):
return re.sub('(.)([A-Z]{1})', r'\1_\2', string).lower()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment