Strings • Exercise 3/6

Title Case

00:00
0
15 points

Instructions

Create a function titleize that converts a string to title case,
where the first letter of each word is capitalized.

Example: titleize("hello world") returns "Hello World"

Your Code

Results

Click "Run Tests" to see results