This is a simple string manipulation problem in which you have to capitalize a given string $s$ of alphabetic letters, with $\abs{s} \leq 10^3$. Just change the first letter to uppercase and leave the rest alone.
Remember strings in Python are immutable.