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:>
s = s[0].upper() + s[1:]
This should work with every string, except for the empty string (when s="").
s=""