Run
# Take a string x = "hello world" # Convert to title string x_title = x.title() # Print title string print(x_title)
Output