Literal string interpolation in Python
An f-string is the abbreviated name for a "formatted string" syntax that was introduced in Python 3.6 and extended in Python 3.7. They enable literal string interpolation:
>>> value = 80
>>> f'The value is {value}.'
'The value is 80.'
See PEP 498 for a comprehensive description of the feature, and also PEP 536 for the final grammar.