Re: [Tutor] order loop from methos on class

2015-01-26 Thread Steven D'Aprano
On Mon, Jan 26, 2015 at 11:48:52AM +0100, jarod...@libero.it wrote: > > > Dear All, > What is the best way to loop on methos on a class? I do not understand the question. Can you explain in more detail? > class Rna(): > def trim(): > ... > def align(): > ... Both metho

[Tutor] order loop from methos on class

2015-01-26 Thread jarod...@libero.it
Dear All, What is the best way to loop on methos on a class? class Rna(): def trim(): ... def align(): ... ena = Rna() ena.trim() ena.aling() Thanks for any suggestion!!! ___ Tutor maillist - Tutor@python.org To unsubscri