Python para propiedad en objeto

for property, value in myObject.items():
  print(property, ":", value)
Tommy