Python articles and tutorials related to string and its operations.

How to Ignore Case in Python?

Summary: In this tutorial, you will learn to compare two strings case-insensitively (i.e., ignore case) in Python. When comparing two strings, Python interprets uppercase and lowercase letters differently. For example,…

0 Comments

How to Interpolate Strings in Python?

Summary: In this tutorial, you will learn two different ways to interpolate strings in Python. Interpolation is the process of evaluating strings that contain one or more placeholders for substitution…

0 Comments

How to Format Currency in Python?

Formatting currency converts the currency amount of floating or integer type into a comma-separated string that represents the amount of money. The majority of the currencies separate every three digits…

0 Comments