String
Python Regular Expressions: Mastering RegEx
·3832 words·18 mins
Python
String
Format
Regex
Drops
Regular expressions (or, shortly, regex) are a language that detects patterns. You express a pattern that will be applied to strings. It is an efficient way to find patterns and extract information from texts. Within this pattern, each symbol represents a type of information. In this article, we will see the main symbols and their meanings with the help of several examples.
A Guide to Python String Format Techniques
·1610 words·8 mins
Python
String
Format
F-Strings
Drops
A significant part of our time is spent dealing with strings, so it is important to know how to present them in the desired way. This is what we will see in this article with several examples.