>>> title = "python strings are awesome" >>> title.capitalize() 'Python strings are awesome' >>> title.title() 'Python Strings Are Awesome' >>> title.split() ['python', 'strings', 'are', 'awesome']
Python has some pretty nifty string functions. Here are some examples!