Skip to content

Instantly share code, notes, and snippets.

@Limitinit
Created July 27, 2023 13:27
Show Gist options
  • Save Limitinit/f14940dbc179ae58cbe31ef626bafe8f to your computer and use it in GitHub Desktop.
Save Limitinit/f14940dbc179ae58cbe31ef626bafe8f to your computer and use it in GitHub Desktop.
ChameLeon
import re
camel = 'ChameLeon'
snake = re.sub(r'(?<!^)(?=[A-Z])', '_', camel).lower()
print(snake)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment