2 Answers
+ 3
Hope this helps clearly... It has detail explanation..
https://realpython.com/JUMP_LINK__&&__python__&&__JUMP_LINK-f-strings/
+ 2
num = 12
dbl = num*2
# within {} curly braces you can code
# as if in ordinary code lines
# and it gets the result
print(f'{num} x 2 equals to {dbl}')
print(f'{num} x 3 is equal to {num*3}')