[lang-ref] ( string_interpolation_expression ) ( python )
def test_string_interpolation_expression():
# f'{x}'
age = 20
s = f'I am {age - 2} years old.'
assert s == 'I am 18 years old.'
def test_string_interpolation_expression():
# f'{x}'
age = 20
s = f'I am {age - 2} years old.'
assert s == 'I am 18 years old.'