I need to create several hundred instances of an Object (rack) but i can't find the proper way to write this in. What i need is something like this but more elegant:
class Rack:
def __init__(self):
self._listeMedNoder = []
Rack1 = Rack()
Rack2 = Rack()
Rack3 = Rack()
etc... but up to say 100.