Instead of *not(S == [])*, Python allows to simply use *not S*, and instead of *not(r == 0)* you can use *r != 0*, and lastly instead of *S = S + [r]* you can use *S.append(r)*, or *S += [r]* if you do not want to use OOP.
Christophe BAL -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
