I have:
Variable1 = "list1"
and
list1 = ["a", "b", "c", "d"]
How to access/manipulate list1 items (and apply all the standard list operator/functions to list1) via the variable Variable1
Something like
token = random.choice($UnknownOperator$(Variable1))
and token would be equal either to a b c or d
Thanks!