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:>
@saua is right, and
s = s[:1].upper() + s[1:]
will work for any string.