Skip to content

Latest commit

 

History

History
26 lines (9 loc) · 1.01 KB

README.md

File metadata and controls

26 lines (9 loc) · 1.01 KB

Useful String Methods in Python

Binder

A string is a sequence of characters. The built-in string class in Python represents strings based upon the Unicode international character set. Strings implement the common sequence of operations available in Python along with some of the additional methods which are exclusive to them. The figure below shows all of these available methods :

Alt Text

In this article, we shall learn about some of the more frequently used ones. Something important to note here is that all the string methods always return new values and do not change or manipulate the original string.

Blog

Useful String Methods in Python

References