I have a str variable: var_1 = \"hello\" , and I want to convert it to a single element list, I try this:
str
var_1 = \"hello\"
list
>>>
Does var1 = [var1] accomplish what you're looking for?
var1 = [var1]