If I have two lists
a = [x,y]
b = [1,2,3,4,5,6,7,8,9]
What is the easiest way to get b[x,y]
without using b[a]
because that returns a type error?
If I have two lists
a = [x,y]
b = [1,2,3,4,5,6,7,8,9]
What is the easiest way to get b[x,y]
without using b[a]
because that returns a type error?