iterate through object in python code example
Example 1: python loop through dictionary
dictionary = {52:"E",126:"A",134:"B",188:"C",189:"D"}
for key, value in dictionary.items():
print(key)
print(value)
Example 2: loop through python object
for attr, value in k.__dict__.items():
print(attr, value)
Example 3: iterate through objects with python
class C:
a = 5
b = [1,2,3]
def foobar():
b = "hi"
for attr, value in C.__dict__.iteritems():
print "Attribute: " + str(attr or "")
print "Value: " + str(value or "")