Useful Python String Methods

John Au-Yeung
Level Up Coding
Published in
4 min readMay 1, 2020

--

Photo by Kira auf der Heide on Unsplash

Python is a convenient language that’s often used for scripting, data science, and web development.

In this article, we’ll look at how to use Python string methods to manipulate strings.

The upper(), lower(), isupper(), and islower() Methods

The upper method converts all characters of a string to upper case and returns it.

--

--