Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Created May 25, 2020 21:58
Show Gist options
  • Save hsleonis/e7a4770130430ecd4b84501805418fea to your computer and use it in GitHub Desktop.
Save hsleonis/e7a4770130430ecd4b84501805418fea to your computer and use it in GitHub Desktop.
Capitalizes the first letter of a string.
def str_capitalize(s, lower_rest=False):
  return s[:1].upper() + (s[1:].lower() if lower_rest else s[1:])
str_capitalize('fooBar') # 'FooBar'
str_capitalize('fooBar', True) # 'Foobar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment