Python – String title() Method
The Python string title() method returns a string where the first character in every word is upper case (as in a header or a title).
The Python string title() method returns a string where the first character in every word is upper case (as in a header or a title).
The Python string translate() method returns a string where specified characters are replaced as described in a dictionary or mapping table.
The Python string upper() method returns a string where all characters are lower case.
The Python string zfill() method adds zeros (0) at the beginning of the string until it reaches the specified length.