Hello,
I’m trying to use the Dynamo list method Transpose() in my Python script. For some reason it is not recognizing my list as a list object, but as an “Array[Array[object]]”.
Does anyone know the solution for this issue?
Thank you in advance!
Hello,
I’m trying to use the Dynamo list method Transpose() in my Python script. For some reason it is not recognizing my list as a list object, but as an “Array[Array[object]]”.
Does anyone know the solution for this issue?
Thank you in advance!
Should it instead be List.Transpose(data)
?
Yes you’re correct, it worked.
Thank you cgartland!