Introduction to f-strings
Introduced in Python 3.6, f-strings (Formatted String Literals) provide a concise and readable way to embed expressions inside string literals. They are generally faster and more readable than the older % formatting or str.format().
Basic Usage
Prefix strings with f or F and write expressions inside curly braces {}.