print all object values python code example
Example 1: python dump object print
print(dir(your_variable))
Example 2: print items in object python
def (myObject):
print(vars(myObject))
print(dir(your_variable))
def (myObject):
print(vars(myObject))