I have this list of objects and I need to access the individual parameters inside a particular object. Any help?
[object1,object2,object3,object4,object5,object6]
When I try iterating through for loop it says Objects are not iterable
values[]
self.values=list(TestParameters.objects.filter(id=1))
for x in self.values:
for y in x:
print y