Puedes usar clases para este ejemplo. (Asumiendo que usas python 2.x)
Código Python:
Ver originalclass Objeto:
def __init__(self, a, b, c):
self.a = a
self.b = b
self.c = c
def __str__(self):
return "a=%s b=%s c=%s" % (self.a, self.b, self.c)
obj1 = Objeto(1, 2, 'a')
obj2 = Objeto(3, 4, 'b')
obj3 = Objeto(5, 6, 'c')
obj4 = Objeto(7, 8, 'd')
l = [obj1, obj2, obj3, obj4]
for obj in l:
print obj.a, obj.b, obj.c
print obj
print