> In [65]: for i in range(3): > ....: for j in range(3): > ....: if i <= j: > ....: for l in range(6): > ....: J[k,l] = diff(Y[i,j], vars[l]) > ....: k=k+1 > ....: > IndentationError: expected an indented block
Is the indentation consistent - It seems like it varies between 3 and 4 spaces. Do you use tab instead of a space or mix tab and space? -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
