First time here? Check out the FAQ!
answered 12 years ago
Your class must implement an __iter__ method:
__iter__
class Foo(SageObject): def __iter__(self): for i in range(10): yield(i)
Then you can just say:
sage: bar = Foo() sage: list(bar) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]