Overview of Strings
Overview of Strings¶ Let us get an overview of how strings are used in Python.* str is the class or type to represent a string. A string is nothing but list of characters. Python provides robust set of functions as part of str to manipulate strings. As str object is nothing but list of characters, …