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:>
str = str[:].upper()
this is the easiest way to do it in my opinion