f–strings in Python 3
I came across a negligible but convenient new string formatting feature introduced within PEP 498 (Literal String Interpolation) in Python 3.6. Essentially, it is a way of string formatting that lets you use embedded expressions that are evaluated at run time inside string constants. Here is what the official ...
Read more...