Skip to content

Instantly share code, notes, and snippets.

@azakordonets
Created April 8, 2022 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azakordonets/b01884f6aecbc34c0bf64c06d906d1c9 to your computer and use it in GitHub Desktop.
Save azakordonets/b01884f6aecbc34c0bf64c06d906d1c9 to your computer and use it in GitHub Desktop.
def convertFromSnakeToCamel(string):
return string[0].lower() + ''.join(x.capitalize() or '_' for x in string.split('_'))[1:]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment