Skip to content

Instantly share code, notes, and snippets.

@akaomy
Created November 8, 2018 19:11
Show Gist options
  • Save akaomy/4700aac532e7d346db283380ca7c6aa0 to your computer and use it in GitHub Desktop.
Save akaomy/4700aac532e7d346db283380ca7c6aa0 to your computer and use it in GitHub Desktop.
def capitalizeEach(string):
print(" ".join(w.capitalize() for w in string.split()))
capitalizeEach("This is a loooog string")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment