DEV Community

Kelvin Wangonya
Kelvin Wangonya

Posted on • Originally published at wangonya.com on

3 1

A quick reference to Python string methods - Cases

Cases

capitalize()

Parameters

string.capitalize()
Enter fullscreen mode Exit fullscreen mode

capitalize() takes no parameters.

Return value

Returns a copy of the string with the first letter of the first word capitalized and all the other characters of thestring in lowercase.

Example

Python 3.7.4

>>> s = "soMe peopLe AcTUally tyPE Like thIs."

>>> s.capitalize()
'Some people actually type like this.'
Enter fullscreen mode Exit fullscreen mode

title()

Parameters

string.title()
Enter fullscreen mode Exit fullscreen mode

title() takes no parameters.

Return value

Returns a copy of the string with the first letter of each word capitalized and all the other characters of thestring in lowercase.

Example

Python 3.7.4

>>> s = "soMe peopLe AcTUally tyPE Like thIs."

>>> s.title()
'Some People Actually Type Like This.'
Enter fullscreen mode Exit fullscreen mode

swapcase()

Parameters

string.swapcase()
Enter fullscreen mode Exit fullscreen mode

swapcase() takes no parameters.

Return value

Returns a copy of the string with all uppercase characters swapped to lowercase and lowercasecharacters swapped to uppercase.

Example

Python 3.7.4

>>> s = "soMe peopLe AcTUally tyPE Like thIs."

>>> s.swapcase()
'SOmE PEOPlE aCtuALLY TYpe lIKE THiS.'
Enter fullscreen mode Exit fullscreen mode

upper()

Parameters

string.upper()
Enter fullscreen mode Exit fullscreen mode

upper() takes no parameters.

Return value

Returns a copy of the string with all characters in uppercase.

Example

Python 3.7.4

>>> s = "soMe peopLe AcTUally tyPE Like thIs."

>>> s.upper()
'SOME PEOPLE ACTUALLY TYPE LIKE THIS.'
Enter fullscreen mode Exit fullscreen mode

lower()

Parameters

string.lower()
Enter fullscreen mode Exit fullscreen mode

lower() takes no parameters.

Return value

Returns a copy of the string with all characters in lowercase.

Example

Python 3.7.4

>>> s = "soMe peopLe AcTUally tyPE Like thIs."

>>> s.lower()
'some people actually type like this.'
Enter fullscreen mode Exit fullscreen mode

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay