How to create multi line string objects in python ?
In this article we will discuss different ways to create long multi line string in python.
In this article we will discuss different ways to create long multi line string in python.
In this article we will discuss different ways to fetch the frequency or occurrence count of each character in the string and their index positions in the string using collections.Counter() and regex.
In this article we will discuss different ways to check if a sub-string exists in another string and if yes then find it’s index. Will also explore ways to check the existence of sub-string in case in-sensitive manner by ignoring case.
In this article we will discuss different ways to count occurrences of a sub-string in another string and also their index positions.
In this article we will discuss different ways to compare strings in python like, using == operator (with or without ignoring case) or using is operator or using regex.
In this article we will discuss how to do left padding of strings or right padding of strings either with zero, space or some other character.
In this article we will discuss how to remove characters from a string at specific index position or in a given range of indices.
In this article we will discuss how to replace single or multiple characters in a string in Python.
In this article we will discuss different ways to iterate or loop over all the characters of string in forward, backward direction and also by skipping over certain characters.
In this article we will discuss how to access characters in string by index.