Suppose I have 3 lists
List1 = [1,2,3,4]
List2 = [2,3,4,5]
List3 = [3,4,5,6]
And one string
string = "List2"
According to the value of string, I want to access corresponding List.
You can assume that, string value is taken as input or from local file
How can I create lists from a list of strings?
According to above answer, it is creating the List from variable and storing it in "Dictionary" object. But in my case the List is already present so I don't have ability to access it with "Dict"