Skip to content

Instantly share code, notes, and snippets.

@brainyfarm
Last active August 8, 2016 07:39
Show Gist options
  • Save brainyfarm/d62ed6b1a121a3500d3e63ccfd4b2e53 to your computer and use it in GitHub Desktop.
Save brainyfarm/d62ed6b1a121a3500d3e63ccfd4b2e53 to your computer and use it in GitHub Desktop.
FreeCodeCamp: Title Case a Sentence (Python)
"""
Return the provided string with the first letter of each word capitalized.
Make sure the rest of the word is in lower case.
For the purpose of this exercise, you should also capitalize connecting words like "the" and "of".
"""
def title_case(sentence):
# Pretty Straight Forward ;)
return sentence.title()
print title_case("This is so sweet")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment