
Want to include a dynamic value in a multi-line Python string? That would require both an f-string and a triple-quoted string.
Good news: Python supports this!
x = 10
y = 20
s = f"""{x} + {y} = {x+y}
{x} * {y} = {x*y}"""
print(s) # shows 10+20 = 30 and also 10*20 = 200
