SyntaxFix
Write A Post
Hire A Developer
Questions
if variable b has a list then you can simply do the below:
create a new variable "a" as: a=[] then assign the list to "a" as: a=b
a=[]
a=b
now "a" has all the components of list "b" in array.
so you have successfully converted list to array.