This tutorial help to replace a character or substring using regex.Python’s re module help to regex with python.
Category: Python Tutorials
This page will have all tutorials which are related to python 3.

Python Replace Character in String
This tutorial help to replace character in a string. We’ll discuss different ways to replace characters in a string. I also let you know to replace special characters and substring them into a string.

Remove an item from a list in Python
in this post, I am going to let you know different ways to remove an item from a list in python. We can use clear, pop, remove, and del methods to remove an element from a list.

Python String Contains an Example
in this post, I am going to help you check if the string contains substring with example. The string is the main package of python. We will check a word or character is found or not in a python string.

Comparing Strings in Python
in this post, We’re going to learn different ways to compare two strings in python. There are no special methods to compare two strings.

How To Concatenate String in Python
in this post, We’ll learn how to combine two or more strings in python. You can also call this Python String Concatenation, or python string add. The String Concatenation allows us to join two strings together.

Different Ways to Reverse a String in Python
in this tutorial, I am going to tell you the number of ways to reverse a string using python 3. Python has no built-in mechanism for reversing a string. We’ll create a reverse string in a variety of methods.

Python f-string Format With Example
f-strings are string literals that begin with a f or F and contain curly braces that contain expressions that will be replaced with their values. At runtime, the expressions are evaluated. This method is very helpful in string formatting.

Python List to String
This python tutorial help to convert a python list into a string. We’ll learn different ways to convert list items into the string.

Python isupper(), islower(), lower() and upper() methods
This python string tutorial help to learn some string methods(isupper(), islower(), lower() and upper()) with example.These methods are used to check string is uppercase, check string is lowercase, convert string to lowercase and string in uppercase.