Yes, I often use «SetVar» and «Maps», but they only allow me to create individual variables, and I need an array, whose elements can be accessed through an index.
For example:
value = [10, 20, 30, 40, 50, 60]
a = value[0]
b = value[1]
Probably, this can only be implemented through global variables in Python.