Does anyone know of a really simple way of capitalizing just the first letter of a string, regardless of the capitalization of the rest of the string?
For example:>
>>> b = "my name" >>> b.capitalize() 'My name' >>> b.title() 'My Name'