Learn Python, Microsoft 365 and Google Workspace
Hey everyone, and welcome back! Today, we’re diving into one of Python’s most powerful and readable string formatting techniques—multi-line f-strings. If you’ve used f-strings before, you already know how great they are for embedding expressions inside strings. But did you know you can also use them for multi-line strings? Let’s explore how!
F-strings (formatted string literals) were introduced in Python 3.6. They allow us to embed expressions inside string literals using curly braces {}
. This makes string formatting more readable and concise compared to older methods like .format()
or %
formatting.
Sometimes, we need to format a large block of text dynamically. Instead of using multiple concatenations or long single-line strings, we can use a multi-line f-string for better readability.
name = "John"
age = 30
occupation = "developer"
message = f"""
Hello, my name is {name}.
I am {age} years old.
I work as a {occupation}.
"""
print(message)
Hello, my name is John.
I am 30 years old.
I work as a developer.
f"""
– Starts a multi-line f-string.{}
– Embed variables inside the string.✅ Improves readability.
✅ Maintains formatting without extra \n
.
✅ Simplifies working with large text blocks.
✅ Ideal for dynamically generating text-based reports, logs, or UI messages.
Multi-line f-strings are an excellent way to format long strings while keeping the code readable and structured. Try them in your next project, whether it’s generating reports, displaying structured output, or improving readability in your classes.