ropering / Study

0 stars 0 forks source link

[Python] capitalize_every_word #13

Open ropering opened 2 years ago

ropering commented 2 years ago
def capitalize_every_word(string):
    return string.title()

capitalize_every_word("i am gentleman") # "I Am Gentleman"
capitalize_every_word("How are you?") # "How Are You?"