word = 'testWord'
word = word[0].upper() + word[1:]
0
solved Capitalize only first word and leave rest as it is python [duplicate]
word = 'testWord'
word = word[0].upper() + word[1:]
0
solved Capitalize only first word and leave rest as it is python [duplicate]