How can I re-format using the f-string this string:
string_from_db = "Hello {full_name}"
full_name = "Mark X"
return f'{string_from_db}'
This example is not working, I have the string which is ready for the params injections in the DB, And I want to use the python 3.6 f-string on that data.