f-strings

Similar to string interpolation you can use f-strings to insert values into a string.

>>> name = 'Al'
>>> age = 4000
>>> f'My name is {name}. Next year I will be {age + 1}.'
'My name is Al. Next year I will be 4001.'