You can download this code by clicking the button below.
This code is now available for download.
Capitalize the first letter of each word in the input sentence.
Technology Stack : String method.title()
Code Type : String processing
Code Difficulty : Intermediate
def capitalize_words(sentence):
return sentence.title()