I have two variables:
query = "String: {} Number: {}"
param = ['text', 1]
I need to merge these two variables and keep the quote marks in case of string and numbers without quote marks.
result= "String: 'text' Number: 1"
I tried to use query.format(param), but it removes the quote marks around the 'text'. How can I solve that?