How can I re-format using 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 a string which is ready for params injections in the DB, And I want to use python 3.6 f-string on that data.
Thank you