For example: var = “Hello World!” In this tutorial, we will learn –

Accessing Values in Strings
Various String Operators
Some more examples
Python String replace() Method
Changing upper and lower case strings
Using “join” function for the string
Reversing String
Split Strings

Accessing Values in Strings

Python does not support a character type, these are treated as strings of length one, also considered as substring. We use square brackets for slicing along with the index or indices to obtain a substring. Output

Various String Operators

There are various string operators that can be used in different ways like concatenating different string. Suppose if a=guru and b=99 then a+b= “guru99”. Similarly, if you are using a*2, it will “GuruGuru”. Likewise, you can use other operators in string.

Some more examples

You can update Python String by re-assigning a variable to another string. The new value can be related to previous value or to a completely different string all together. Output Note : – Slice:6 or 0:6 has the same effect

Python String replace() Method

The method replace() returns a copy of the string in which the values of old string have been replaced with the new value. Output

Changing upper and lower case strings

In Python, you can even change the string to upper case or lower case. Output Likewise, you can also do for other function as well like capitalize Output You can also convert your string to lower case Output

Using “join” function for the string

The join function is a more flexible way for concatenating string. With join function, you can add any character into the string. For example, if you want to add a colon (:) after every character in the string “Python” you can use the following code. Output

Reversing String

By using the reverse function, you can reverse the string. For example, if we have string “12345” and then if you apply the code for the reverse function as shown below. Output

Split Strings

Split strings is another function that can be applied in Python let see for string “guru99 career guru99”. First here we will split the string by using the command word.split and get the result. Output To understand this better we will see one more example of split, instead of space (‘ ‘) we will replace it with (‘r’) and it will split the string wherever ‘r’ is mentioned in the string Output Important Note: In Python, Strings are immutable. Consider the following code Output will still return Guru99. This is because x.replace(“Guru99″,”Python”) returns a copy of X with replacements made You will need to use the following code to observe changes Output Above codes are Python 3 examples, If you want to run in Python 2 please consider following code. Python 2 Example Output Python has introduced a .format function which does way with using the cumbersome %d and so on for string formatting. » Learn more about Python String split()

Summary:

Since Python is an object-oriented programming language, many functions can be applied to Python objects. A notable feature of Python is its indenting source statements to make the code easier to read.

Accessing values through slicing – square brackets are used for slicing along with the index or indices to obtain a substring. In slicing, if range is declared [1:5], it can actually fetch the value from range [1:4] You can update Python String by re-assigning a variable to another string Method replace() returns a copy of the string in which the occurrence of old is replaced with new. Syntax for method replace: oldstring.replace(“value to change”,”value to be replaced”) String operators like [], [ : ], in, Not in, etc. can be applied to concatenate the string, fetching or inserting specific characters into the string, or to check whether certain character exist in the string Other string operations include Changing upper and lower case Join function to glue any character into the string Reversing string Split string