In python 3.6, a new syntax added to support template like fstrings: ``` >>> a = 123 >>> print(f"my num: {a}") <<< my num: 123 ``` Thanks!
In python 3.6, a new syntax added to support template like fstrings:
Thanks!