[lang-ref] String interpolation (expression) ( python )

def test_string_interpolation_with_expression():
    # f'{expr}'
    age = 20
    s = f'I am {age - 2} years old.'
    assert s == 'I am 18 years old.'