Strings in Python

In the previous article we saw how could obtain the prime factors of a number, now we will examine the role of Strings in Python. A string consists of a sequence of characters, it is typically used to store text data. Any other object in Python can be translated to the string that matches it. To … Read more

Common String Operations in Python

In the previous article we have seen some of the list operations and string operations in python. Now we will look at some more vital string operations, keywords or functions in Python. Transformation/Manipulation of Strings There are a number of fun methods that we can use to transform our string text. Among those more important for … Read more