Files
30-seconds-of-code/snippets/capitalize_every_word.md
Angelos Chalaris 1c93753ade Update some snippets
2019-08-20 10:24:16 +03:00

17 lines
329 B
Markdown

---
title: capitalize_every_word
tags: string,beginner
---
Capitalizes the first letter of every word in a string.
Use `string.title()` to capitalize first letter of every word in the string.
```py
def capitalize_every_word(string):
return string.title()
```
```py
capitalize_every_word('hello world!') # 'Hello World!'
```