我在 python 2.7 中工作。我一直在尝试使用tweepy包。有一个对象叫做 tweepy.models.status 对象,它的功能在这里定义:https ://github.com/tweepy/tweepy/blob/master/tweepy/models.py 。
我有一个看起来像这样的函数:
def on_status(self, status):
try:
print status
return True
except Exception, e:
print >> sys.stderr, 'Encountered Exception:', e
pass
我所指的对象是从on_status
函数返回的对象,称为status
. 当该print status
行执行时,我将其打印在屏幕上;
tweepy.models.Status 对象位于 0x85d32ec>
我的问题实际上很笼统。我想知道如何直观地打印出这个status
对象的内容?我想知道这个对象里面有什么信息。
我尝试了这种for i, v in status :
方法,但它说这个对象是不可迭代的。此外,并非所有对象属性都在函数定义中进行了描述。
非常感谢!