A
alankrinsky
I am working with Python looping in SPSS. What are the limits for the
for var1, var2, var3 in zip(Variable1, Variable2, Variable3):
statement in the Python looping function within SPSS? I am getting an errormessage, I presume because of wrapping or length. Imagine the above statement, but expanded, as I am working with more than 28 variables in this loop, and even making the names really short is making the statement too long. Is it impossible to wrap and make this work? I know there are ways to wrap strings, including lists of variables, but here I have a statement/function..
Thank you for any help!
Alan
for var1, var2, var3 in zip(Variable1, Variable2, Variable3):
statement in the Python looping function within SPSS? I am getting an errormessage, I presume because of wrapping or length. Imagine the above statement, but expanded, as I am working with more than 28 variables in this loop, and even making the names really short is making the statement too long. Is it impossible to wrap and make this work? I know there are ways to wrap strings, including lists of variables, but here I have a statement/function..
Thank you for any help!
Alan