I would like to run a function with a list parameter :
param = ['a', 'b', 'c']
myFunction(param)
But a, b and c must be dynamic so I would like to remove the quotes to get this :
param = [a, b, c]
myFunction(param)
How can I do that ?
PS : I tried the solutions of this question but it didn't work Removing quotation marks from list items