在阅读python中的Youtube API上的代码示例时,我遇到了这行代码:
print 'Video category: %s' % entry.media.category[[]0].text
(https://developers.google.com/youtube/1.0/developers_guide_python,Video entry contents
部分)
[[]0]
是什么意思?或者它在语法上是不正确的?
答案 0 :(得分:2)
绝对是错误的。
api的正确部分是print 'Video category: %s' % entry.media.category[0].text
:
def PrintEntryDetails(entry):
print 'Video title: %s' % entry.media.title.text
print 'Video published on: %s ' % entry.published.text
print 'Video description: %s' % entry.media.description.text
print 'Video category: %s' % entry.media.category[0].text
print 'Video tags: %s' % entry.media.keywords.text
print 'Video watch page: %s' % entry.media.player.url
print 'Video flash player URL: %s' % entry.GetSwfUrl()
print 'Video duration: %s' % entry.media.duration.seconds
另外, - https://code.google.com/p/gdata-issues/issues/detail?id=3710看看这个问题。
来自那里的支持的答案 - “感谢您的报告!看起来在我们的旧文档中有一些这样的实例。我们将调查它。”