最佳答案
我们通过反射来实现,在 Javascript 中很简单:
for(var propertyName in objectName)
var currentPropertyValue = objectName[propertyName];
如何在 Python 中做到这一点?