PEP 498: F-Strings - The Modern Way to Format Python Strings
TL;DR
PEP 498 introduced f-strings (formatted string literals) in Python 3.6, allowing direct expression embedding in strings with f"Hello {name}" syntax, making string formatting more readable and performant.