Today stumbled upon Literal String Interpolation,
a=4
b=5
f'{a+b}'
the above code gives the output 9, I was trying to put the operation in variable too.
a=4
b='+'
c=5
Now how can Literal String Interpolation generate the expected output, saw the documentation but could not make much out of it.