how to make first letter of each word capital in python code example
Example: python lowercase first letter
def decapitalize(str):
return str[:1].lower() + str[1:]
print( decapitalize('Hello') ) # hello
def decapitalize(str):
return str[:1].lower() + str[1:]
print( decapitalize('Hello') ) # hello