vote up 2 vote down star

Hi,

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:

asimpletest -> Asimpletest
aSimpleTest -> ASimpleTest

I would like to be able to do all string lengths as well.

Thanks, Dan

flag

76% accept rate

2 Answers

vote up 18 vote down check

@saua is right, and

str = str[:1].upper() + str[1:]

will work for any string

link|flag
Nice! Those are the kind of little tricks that I don't know ... I should use Python more often. – Joachim Sauer Dec 9 '08 at 11:54
'str' is a builtin name – hop Dec 9 '08 at 21:00
@hop: Yes it is. That doesn't make the code invalid, and since I was providing a refinement of saua's answer, I decided to keep the variable name, even though I would usually avoid it if I were writing code from scratch. – Blair Conrad Dec 10 '08 at 1:38
vote up 4 vote down
str = str[0].upper() + str[1:]

This should work with every string, except for the empty string ("").

link|flag
beat me to it, and yours is more elegant. – Unkwntech Dec 9 '08 at 11:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.