String with 'f' prefix in python-3.6 String with 'f' prefix in python-3.6 python python

String with 'f' prefix in python-3.6


See PEP 498 Literal String Interpolation:

The expressions that are extracted from the string are evaluated in the context where the f-string appeared. This means the expression has full access to local and global variables. Any valid Python expression can be used, including function and method calls.

So the expressions are evaluated as if they appear in the same scope; locals, closures, and globals all work the same as in other code in the same context.

You'll find more details in the reference documentation:

Expressions in formatted string literals are treated like regular Python expressions surrounded by parentheses, with a few exceptions. An empty expression is not allowed, and a lambda expression must be surrounded by explicit parentheses. Replacement expressions can contain line breaks (e.g. in triple-quoted strings), but they cannot contain comments. Each expression is evaluated in the context where the formatted string literal appears, in order from left to right.

Since you are trying out a 3.6 alpha build, please do read the What's New In Python 3.6 documentation. It summarises all changes, including links to the relevant documentation and PEPs.

And just to be clear: 3.6 isn't released yet; the first alpha is not expected to be released until May 2016. See the 3.6 release schedule.


f-strings also support any Python expressions inside the curly braces.

print(f"My cool string is called {name.upper()}.")


It might also be worth noting that this PEP498 has a backport to Python <3.6

pip install fstring

from fstring import fstringx = 1y = 2.0plus_result = "3.0"print fstring("{x}+{y}={plus_result}")# Prints: 1+2.0=3.0