Sentence Capitalization

  • Share this:

Code introduction


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()