[Solved] Change the type between str and the name of list
I’m considering you have a string answer stored in the variable c and you want to access a list with the respective name. With this objective, you can use the python function eval(). From the python docs (here) you have that: eval(expression[, globals[, locals]]) The expression argument is parsed and evaluated as a Python expression … Read more