list of objects

This time I’ve done some research and I can’t google any tuts on the net that cover lists of objects in python.

I have a class called roids for which I want to make an array of instances. I figured

   RoidsArray = []
   RoidsArray.append(Roid)

would be about right unfortunately i get.

IndentationError: unindent does not match any outer indentation level

for the first line. any ideas?

So sorry “Identation error” just sunk in.

I was right my formating was wrong.