I would like to write a custom list class in Python (let's call it MyCollection) where I can eventually call:
for x in myCollectionInstance:
#do something here
How would I go about doing that? Is there some class I have to extend, or are there any functions I must override in order to do so?