In PEP 498 a new string formatting mechanism was introduced called as "Literal String Interpolation" or more famously called as f-strings.
The Python f-strings are a way by which you can embed expressions inside string literals. It makes use of a very minimal syntax (prefixed with the word 'f').
Let us take a look at the Syntax:
f"Some String Literal {expression-1} more text {expression-2}"
Note: The f-string literal string expressions are evaluated at run-time, and they are expressed with curly braces as shown above.
Examples:
Example 1:user = 'Mike'
f'The user name is {user}'
Output
'The user name is Mike'

Example 2: f-strings with print function
name = 'Alex'
age = 22
city = 'New York'
print(f"The name is {user}, age is {age}, city {city}")
Output:
The name is Mike, age is 22, city New York

The f-string was designed with the intention to have a simpler way to format strings in Python as the existing ways of formatting are either error-prone, inflexible, or cumbersome.
Further readings:
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- How to convert int to ASCII in Python
- How to make use of SQLite Module in Python?
- Split a String into Sub-string and Parse in Python
- Python: Pandas Rename Columns with List Example
- How to run Python file from Mac Terminal
- How to Exit a Loop in Python Code
- Python: How to Plot a Histogram using Matplotlib and data as list
- MD5 Hashing in Python
- Jupyter: Safari Cant Connect to the Server localhost:8888/tree
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python]
- How to Read a binary File with Python
- How to add two float numbers in Python
- Python: How to install YAML Package
- Python: How to Save Image from URL
- What is Markdown in Jupyter Notebook with Examples
- How to change the Python Default version
- 33: Python Program to send an email vid GMail
- How to comment code in Python
- How to Fix AttributeError in Python
- Fix: error: Jupyter command `jupyter-nbconvert` not found [VSCode]
- How to comment out a block of code in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- Import Other Python Files Examples
- Python: How to add Progress Bar in Console with Examples
- 3 Ways to convert bytes to String in Python
More Posts:
- How to install Packages in Sublime Text Editor - Sublime-Text
- How to add animated Gif to SharePoint Online Page - SharePoint
- Understanding AWS Calculator: DynamoDB on-demand capacity - AWS
- [Fix] Sharepoint: Embedding content from this website isnt allowed, but your admin can change this setting. - SharePoint
- Fix [oh-my-zsh] Cant update: not a git repository - Git
- How to save macOS Terminal outputs as text file - MacOS
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json - JavaScript
- How to Read a binary File with Python - Python