码迷,mamicode.com
首页 > 编程语言 > 详细

初识python yield

时间:2016-03-20 14:40:32      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

for sel in response.xpath(‘//ul/li‘):
item = DmozItem()
item[‘title‘] = sel.xpath(‘a/text()‘).extract()
item[‘link‘] = sel.xpath(‘a/@href‘).extract()
item[‘desc‘] = sel.xpath(‘text()‘).extract()
yield item


等价于:


items []
for sel in response.xpath(‘//ul/li‘):
item = DmozItem()
item[‘title‘] = sel.xpath(‘a/text()‘).extract()
item[‘link‘] = sel.xpath(‘a/@href‘).extract()
item[‘desc‘] = sel.xpath(‘text()‘).extract()
   items.append(item)
return items

就这么简单!

初识python yield

标签:

原文地址:http://www.cnblogs.com/yrqiang/p/5297526.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!