Hi all.
I'm wondering if it is possible to pass formatted strings to function arguments.
I'm doing something like this:OUT_TASK = "Task_{id1}, FUNCTION, {id2}, task{id3}_types, None"
t = Task(OUT_TASK.format(id1=i, id2='doNothing', id3=i))
Any clues are much appreciated. Any other means for doing variable arguments are of interest.