You can download this code by clicking the button below.
This code is now available for download.
Capitalize the first letter of a word
Technology Stack : str.capitalize()
Code Type : String operation
Code Difficulty :
def capitalize_word(word):
return word.capitalize()